/* ==========================================================================
   Sunshine Tour & Travel — Stylesheet
   Brand colors: #183f72 (deep blue) · #cf2e2e (red) · #068b50 (green)
   ========================================================================== */
html,
body{
  overflow-x: hidden;
}
:root {
  --blue: #183f72;
  --blue-dark: #102b4f;
  --red: #cf2e2e;
  --green: #068b50;
  --black: #14171c;
  --white: #ffffff;

  --bg-soft-blue: #eff4fa;
  --bg-soft-green: #eefaf3;
  --bg-soft-red: #fdf2f2;

  --text-dark: #1c2330;
  --text-muted: #5b6573;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 10px 30px rgba(16, 43, 79, 0.08);
  --shadow-card: 0 14px 34px rgba(16, 43, 79, 0.12);

  --header-height: 84px;
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 700;
  margin: 0;
}

p { color: var(--text-muted); line-height: 1.75; }

a { text-decoration: none; color: inherit; transition: all .25s ease; }

img { max-width: 100%; display: block; }

.section-soft-blue  { background-color: var(--bg-soft-blue); }
.section-soft-green { background-color: var(--bg-soft-green); }
.section-soft-red   { background-color: var(--bg-soft-red); }

section { padding: 90px 0; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title span { color: var(--green); }

.section-subtext {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-heading { margin-bottom: 50px; }

.lead-text {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* Buttons */
.btn-primary-brand {
  background-color: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
}
.btn-primary-brand:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-brand {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
}
.btn-outline-brand:hover {
  background-color: var(--white);
  color: var(--blue);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background-color: #ffffff;
  z-index: 1000;
  transition: box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(16,43,79,.12);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
 /* gap: 12px;*/
}
.brand-icon {
  width: 10%;
  /*height: 46px;*/
  border-radius: 50%;/*
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);*/
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--blue);
}
.brand-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0; padding: 0;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background-color: var(--red);
  transition: width .3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--blue); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-enquire-nav {
  background-color: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all .3s ease;
}
.btn-enquire-nav:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: var(--bg-soft-blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
.hamburger .bar {
  width: 22px; height: 2.5px;
  background-color: var(--blue);
  border-radius: 3px;
  transition: transform .35s ease, opacity .25s ease, background-color .3s ease;
}
.hamburger.active .bar { background-color: var(--red); }
.hamburger.active .bar-top { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active .bar-mid { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar-bottom { transform: translateY(-8.5px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 23, 36, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  z-index: 999;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section { padding: 0; margin-top: calc(-1 * var(--header-height)); }

.hero-carousel { height: 100vh; min-height: 520px; }
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item { height: 100%; }

.hero-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slide{
    background-color: #000; /* or your preferred color */
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,43,79,.86) 0%, rgba(16,43,79,.55) 45%, rgba(16,43,79,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: var(--header-height);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffd9d9;
  background: rgba(207, 46, 46, .25);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h1 span { color: #7fe3b4; }
.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(4px);
  transition: all .3s ease;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 8%; opacity: 1; }
.hero-carousel .carousel-control-prev:hover .hero-arrow,
.hero-carousel .carousel-control-next:hover .hero-arrow {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.hero-indicators { bottom: 25px; }
.hero-indicators [data-bs-target] {
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.55);
  border: none;
  opacity: 1;
  margin: 0 5px;
}
.hero-indicators .active { background-color: var(--red); width: 26px; border-radius: 6px; }


/* =========================
   HERO BANNER
========================= 
/* ==========================================================
   HERO RESPONSIVE
========================================================== */

/* Laptop */
@media (max-width: 1199px) {

    .hero-carousel{
        height:85vh;
    }

    .hero-content{
        max-width:560px;
    }

    .hero-content h1{
        font-size:48px;
    }
}

/* Tablet */
@media (max-width:991px){

    .hero-section{
        margin-top:0;
    }

    .hero-carousel{
        height:75vh;
        min-height:600px;
    }

    .hero-slide{
        background-position:center center;
        justify-content:center;
        text-align:center;
    }

    .hero-overlay{
        background:rgba(16,43,79,.70);
    }

    .hero-content{
        max-width:100%;
        padding:120px 20px 60px;
    }

    .hero-content p{
        max-width:100%;
        margin:0 auto 25px;
    }

    .hero-cta{
        justify-content:center;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next{
        width:10%;
    }
}

/* Mobile */
@media (max-width:767px){

    .hero-carousel{
        height:65vh;
        min-height:520px;
    }

    .hero-slide{
        background-position:center;
    }

    .hero-content{
        padding:100px 15px 40px;
    }

    .hero-eyebrow{
        font-size:11px;
        padding:5px 14px;
        margin-bottom:15px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.25;
        margin-bottom:15px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .hero-cta{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .hero-cta .btn{
        width:230px;
    }

    .hero-arrow{
        width:42px;
        height:42px;
        font-size:16px;
    }

    .hero-indicators{
        bottom:12px;
    }
}

/* Small Mobile */
@media (max-width:575px){

    .hero-carousel{
        height:60vh;
        min-height:470px;
    }

    .hero-content{
        padding:9px 15px 30px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:14px;
    }

    .hero-cta .btn{
        width:100%;
        max-width:260px;
    }

    /* Hide arrows on very small screens */
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next{
        display:none;
    }

    .hero-indicators{
        bottom:8px;
    }
}





/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  padding: 36px 0;
  background-color: var(--white);
  border-bottom: 1px solid #eef1f6;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item i {
  font-size: 26px;
  color: var(--green);
  flex-shrink: 0;
}
.trust-item h6 {
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--blue);
}
.trust-item p { font-size: 13px; margin: 0; color: var(--text-muted); }

/* ==========================================================================
   About
   ========================================================================== */
.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  /*aspect-ratio: 4/5;*/
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -34px; left: -26px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 6px 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.about-badge i { font-size: 26px; color: var(--red); }
.about-badge span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  line-height: 1.3;
}

/* ==========================================================================
   Travel styles
   ========================================================================== */
.travel-type-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease;
}
.travel-type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.travel-type-card.type-blue  { border-top-color: var(--blue); }
.travel-type-card.type-red   { border-top-color: var(--red); }
.travel-type-card.type-green { border-top-color: var(--green); }

.type-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 22px;
}
.type-blue .type-icon  { background: var(--blue); }
.type-red .type-icon   { background: var(--red); }
.type-green .type-icon { background: var(--green); }

.travel-type-card h4 { margin-bottom: 14px; font-size: 21px; }
.travel-type-card p { font-size: 14.5px; margin: 0; }

/* ==========================================================================
   Packages carousel (custom)
   ========================================================================== */
.packages-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.packages-viewport { overflow: hidden; flex: 1; }
.packages-track {
  display: flex;
  gap: 26px;
  transition: transform .6s cubic-bezier(.65,0,.35,1);
}

.package-card {
  flex: 0 0 calc(25% - 19.5px);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.package-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.package-tag {
  position: absolute;
  top: 14px; left: 14px;
  background-color: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.package-body {
  padding: 22px 22px 24px;
  border-top: 3px dashed #dfe6ee;
  position: relative;
}
.package-body::before,
.package-body::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
}
.package-body::before { left: -9px; }
.package-body::after { right: -9px; }

.package-body h5 { font-size: 18px; margin-bottom: 8px; }
.package-body p { font-size: 13.5px; margin-bottom: 14px; min-height: 56px; }
.package-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.package-link:hover { color: var(--red); gap: 9px; }

.pkg-nav {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background-color: var(--white);
  color: var(--blue);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.pkg-nav:hover { background-color: var(--blue); color: var(--white); }

.packages-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.packages-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: #c9d4e2;
  cursor: pointer;
  transition: all .3s ease;
}
.packages-dots .dot.active { background-color: var(--green); width: 24px; border-radius: 5px; }

/* ==========================================================================
   Spotlight (Vietnam)
   ========================================================================== */
.spotlight-section { padding-top: 0; }
.spotlight-card {
  background-color: var(--blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.spotlight-img {
  width: 100%; height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.spotlight-body { padding: 46px 44px; }
.spotlight-body .hero-eyebrow {
  background: rgba(255,255,255,.12);
  color: #ffd9d9;
}
.spotlight-body h3 {
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  margin: 16px 0 14px;
  line-height: 1.3;
}
.spotlight-body p { color: rgba(255,255,255,.82); margin-bottom: 22px; }
.spotlight-list {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: grid;
  gap: 11px;
}
.spotlight-list li {
  color: var(--white);
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spotlight-list i { color: #7fe3b4; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 46px;
  max-width: 680px;
  text-align: center;
}
.testimonial-quote-icon {
  font-size: 34px;
  color: var(--green);
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 17px;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 26px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}
.testimonial-author h6 { font-size: 15px; margin: 0; }
.testimonial-author span { font-size: 12.5px; color: var(--text-muted); }

.testimonial-control { width: auto; opacity: 1; top: auto; bottom: -10px; }
#testimonialCarousel .carousel-control-prev { left: 0; }
#testimonialCarousel .carousel-control-next { right: 0; }
.hero-arrow-sm {
  width: 42px; height: 42px;
  background: var(--bg-soft-blue);
  border: 1.5px solid #d9e2ee;
  color: var(--blue);
}
.hero-arrow-sm:hover { background: var(--blue); color: var(--white); }
#testimonialCarousel { position: relative; padding: 0 60px; }

/* ==========================================================================
   Enquiry form
   ========================================================================== */
.enquiry-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.enquiry-info {
  background: linear-gradient(155deg, var(--blue), var(--blue-dark));
  padding: 50px 42px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquiry-info h2 { color: var(--white); font-size: clamp(24px,3vw,32px); margin: 14px 0 16px; }
.enquiry-info h2 span { color: #7fe3b4; }
.enquiry-info p { color: rgba(255,255,255,.82); margin-bottom: 28px; }
.enquiry-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.enquiry-contact-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.enquiry-contact-list i { color: var(--red); font-size: 17px; }

.enquiry-form-wrap { padding: 50px 44px; }
.enquiry-form-wrap .form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--blue);
  margin-bottom: 6px;
}
.enquiry-form-wrap .form-control,
.enquiry-form-wrap .form-select {
  border: 1.5px solid #e1e7ef;
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 14.5px;
}
.enquiry-form-wrap .form-control:focus,
.enquiry-form-wrap .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(6,139,80,.15);
}

.enquiry-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.enquiry-alert.success { background-color: #e3f7ed; color: var(--green); border: 1px solid #b9eccf; }
.enquiry-alert.error   { background-color: #fdeaea; color: var(--red); border: 1px solid #f7c5c5; }

/* ==========================================================================
   Footer
   ========================================================================== 
.site-footer {
  background-color: var(--black);
  padding-top: 70px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand-footer .brand-name { color: var(--white); }
.footer-about p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin: 16px 0 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.footer-socials a:hover { background-color: var(--red); transform: translateY(-3px); }

.footer-heading {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
  margin-bottom: 22px;
  position: relative;
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: all .25s ease;
}
.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-contact li {
  color: rgba(255,255,255,.6);
  font-size: 13.5px;
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact i { color: var(--red); margin-top: 3px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  margin: 0;
}
.footer-bottom i { color: var(--red); }

.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all .35s ease;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background-color: var(--red); }
*/
/* =========================
   FOOTER
========================= 
.site-footer{
    background: linear-gradient(135deg,#000000,#000000);
    color:#d8e6f5;
    padding:70px 0 0;
    position:relative;
    overflow:hidden;
}

.site-footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#f9b233,#ffd86b,#f9b233);
}

/* Container 
.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    padding-bottom:50px;
}

/* Brand 
.brand-footer{
    display:flex;
    align-items:center;
    text-decoration:none;
    margin-bottom:20px;
}

.brand-name{
    display:block;
    font-size:28px;
    font-weight:700;
    color:#ffffff;
    line-height:1.1;
}

.brand-sub{
    display:block;
    color:#f9b233;
    font-size:17px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.footer-about p{
    color:#cbd5e1;
    line-height:1.9;
    margin-top:15px;
    font-size:15px;
}
/* Heading 
.footer-heading{
    color:#fff;
    font-size:20px;
    margin-bottom:22px;
    position:relative;
    font-weight:600;
}

.footer-heading::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:55px;
    height:3px;
    background:#f9b233;
    border-radius:20px;
}

/* Links */
.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#d8e6f5;
    text-decoration:none;
    transition:.3s;
    display:inline-block;
}

.footer-links a:hover{
    color:#f9b233;
    transform:translateX(6px);
}

/* Contact 
.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    line-height:1.7;
    color:#d8e6f5;
}

.footer-contact i{
    color:#f9b233;
    font-size:18px;
    margin-top:4px;
    min-width:20px;
}

/* Social 
.footer-socials{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-socials a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
    text-decoration:none;
}

.footer-socials a:hover{
    background:#f9b233;
    color:#000;
    transform:translateY(-5px);
}

/* Bottom 
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    font-size:15px;
    color:#b9c9da;
    flex-wrap:wrap;
    gap:10px;
}

.footer-bottom p{
    margin:0;
}

/* =========================
   Back To Top
========================= 

.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#f9b233;
    color:#000;
    text-decoration:none;
    font-size:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.back-to-top:hover{
    background:#fff;
    transform:translateY(-5px);
}

/* =========================
   Tablet
========================= 
@media (max-width:991px){

    .site-footer{
        padding-top:60px;
    }

    .footer-top{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

    .footer-heading{
        font-size:19px;
    }

}

/* =========================
   Mobile
========================= 

@media (max-width:767px){

    .site-footer{
        text-align:center;
        padding-top:50px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .brand-footer{
        justify-content:center;
    }

    .footer-heading::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact li{
        justify-content:center;
        text-align:left;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
        padding:20px 0;
    }

}

/* =========================
   Small Mobile
========================= 

@media (max-width:480px){

    .brand-name{
        font-size:24px;
    }

    .brand-sub{
        font-size:15px;
    }

    .footer-about p,
    .footer-links a,
    .footer-contact li{
        font-size:14px;
    }

    .footer-heading{
        font-size:18px;
    }

    .back-to-top{
        width:45px;
        height:45px;
        right:15px;
        bottom:15px;
    }

}  

footer end**/
/*=========================================
            FOOTER
==========================================*/

.site-footer{
    background: linear-gradient(135deg,#000000,#000000);
    color:#fff;
    padding:70px 0 25px;
}

/* Logo */
.site-footer h3{
    font-size:32px;
    letter-spacing:1px;
}

.site-footer span.text-warning{
    font-size:15px;
    letter-spacing:3px;
    font-weight:600;
}

/* Headings */

.footer-title{
    font-size:22px;
    font-weight:600;
    color:#fff;
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:"";
    width:50px;
    height:3px;
    background:#ffc107;
    display:block;
    margin-top:8px;
    border-radius:10px;
}

/* Paragraph */

.site-footer p{
    color:#d8d8d8;
    line-height:1.8;
    font-size:15px;
}

/* Links */

.site-footer ul{
    padding:0;
    margin:0;
}

.site-footer ul li{
    list-style:none;
    /*margin-bottom:12px;*/
}

.site-footer ul li a{
    color:#d8d8d8;
    text-decoration:none;
    transition:all .3s ease;
}

.site-footer ul li a:hover{
    color:#ffc107;
    padding-left:6px;
}

/* Contact */

.site-footer p i{
    width:25px;
    font-size:18px;
}

/* Social Icons */

.site-footer .text-md-end a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin-left:8px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
    text-decoration:none;
}

.site-footer .text-md-end a:hover{
    background:#ffc107;
    color:#000;
    transform:translateY(-4px);
}

/* Divider */

.site-footer hr{
    opacity:.15;
}

/* Copyright */

.site-footer .row:last-child p{
    font-size:15px;
    color:#bfc7d1;
}

/*=========================================
        Tablet
==========================================*/

@media (max-width:991px){

    .site-footer{
        padding:60px 0 20px;
    }

    .footer-title{
        margin-top:10px;
    }

}

/*=========================================
        Mobile
==========================================*/

@media (max-width:767px){

    .site-footer{
        text-align:center;
    }

    .footer-title::after{
        margin:10px auto 0;
    }

    .site-footer p{
        margin-bottom:15px;
    }

    .site-footer .text-md-end{
        text-align:center !important;
    }

    .site-footer .text-md-end a{
        margin:5px;
    }

}

/*=========================================
        Small Mobile
==========================================*/

@media (max-width:575px){

    .site-footer{
        padding:50px 0 20px;
    }

    .site-footer h3{
        font-size:28px;
    }

    .footer-title{
        font-size:20px;
    }

    .site-footer p,
    .site-footer ul li a{
        font-size:14px;
    }

}
/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .package-card { flex: 0 0 calc(33.333% - 17.3px); }
}

@media (max-width: 991.98px) {
  :root { --header-height: 74px; }

  .main-nav {
    position: fixed;
    top: 0; left: -100%;
    width: min(82vw, 340px);
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 110px 32px 32px;
    gap: 36px;
    transition: left .45s cubic-bezier(.65,0,.35,1);
    box-shadow: 18px 0 50px rgba(0,0,0,.12);
  }
  .main-nav.nav-open { left: 0; }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: 100%;
  }
  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .4s ease, transform .4s ease;
  }
  .main-nav.nav-open .nav-links li {
    opacity: 1;
    transform: translateX(0);
  }
  .main-nav.nav-open .nav-links li:nth-child(1) { transition-delay: .08s; }
  .main-nav.nav-open .nav-links li:nth-child(2) { transition-delay: .14s; }
  .main-nav.nav-open .nav-links li:nth-child(3) { transition-delay: .20s; }
  .main-nav.nav-open .nav-links li:nth-child(4) { transition-delay: .26s; }
  .main-nav.nav-open .nav-links li:nth-child(5) { transition-delay: .32s; }
  .main-nav.nav-open .nav-links li:nth-child(6) { transition-delay: .38s; }

  .nav-link { font-size: 17px; }

  .btn-enquire-nav {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .4s ease .42s, transform .4s ease .42s;
  }
  .main-nav.nav-open .btn-enquire-nav { opacity: 1; transform: translateX(0); }

  .hamburger { display: flex; }
  .nav-overlay { display: block; }

  .package-card { flex: 0 0 calc(50% - 13px); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 767.98px) {
  section { padding: 64px 0; }
  /*.hero-carousel { height: 90vh; min-height: 460px; }*/
  .hero-content p { font-size: 15.5px; }
  .about-badge { left: 0; bottom: -20px; padding: 14px 18px; max-width: 200px; }
  .about-image-wrap { margin-bottom: 36px; }
  .spotlight-body { padding: 34px 26px; }
  .enquiry-info { padding: 38px 28px; }
  .enquiry-form-wrap { padding: 38px 24px; }
  .testimonial-card { padding: 32px 24px; }
  #testimonialCarousel { padding: 0 46px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 575.98px) {
  .package-card { flex: 0 0 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary-brand,
  .hero-cta .btn-outline-brand {  justify-content: center; margin-left:35px; }
  .pkg-nav { width: 40px; height: 40px; font-size: 15px; }
}
/***************************************************************************************************/
.package-card{
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.package-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

.package-card img{
    height:250px;
    object-fit:contain;
}

.package-card .btn{
    border-radius:30px;
    padding:8px 20px;
}

.carousel-control-prev,
.carousel-control-next{
    width:5%;
}

/***** explore more     *******************************/
/* Video Section */
.video-section{
    background: #f8f9fa;
    padding: 60px 0;
}

.video-box{
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.video-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.video-box video{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.video-title{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
}

/* Tablet */
@media (max-width: 991px){
    .video-box video{
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 767px){
    .video-box{
        margin-bottom: 20px;
    }

    .video-box video{
        height: 220px;
    }
}


/******************/
.discover-vietnam h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
}

.discover-vietnam h3{
    font-size:30px;
    font-weight:600;
    margin-bottom:15px;
}

.discover-vietnam p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
    text-align: justify;
}

.discover-vietnam img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
}

.discover-vietnam img:hover{
    transform:scale(1.03);
}

.discover-vietnam .btn{
    padding:10px 25px;
    border-radius:30px;
}


/*******************       connectivity **************************************
.connectivity{
    background:#fff;
}

.connect-text{
    font-size:22px;
    line-height:1.8;
    color:#333;
    max-width:1000px;
    margin:auto;
}

.city-list ul{
    list-style:none;
    padding:0;
    margin:0;
}

.city-list li{
    font-size:20px;
    font-weight:600;
    color:#222;
    margin-bottom:12px;
}

.connectivity img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:8px;
}

@media(max-width:991px){

    .connect-text{
        font-size:18px;
    }

    .city-list li{
        font-size:18px;
    }

    .connectivity img{
        height:400px;
    }
}*/