@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #1E8E3E;
  --primary-color-dark: #187532;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
}

.section__description {
  /* max-width: 600px; */
  margin-inline: auto;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1.5;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
}

img {
  display: flex;
  width: 100%;
}

.nav__logo img,
.nav__logo .logo img {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
  transition: all 0.3s ease;
  height: 100px;
}

nav.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}

.nav__logo .logo {
  display: block;
  width: 80px !important;
  height: 80px !important;
  flex-shrink: 0;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--primary-color-dark);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}

.nav__links.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  line-height: 1.5;
}

.nav__links a:hover {
  color: var(--primary-color);
}

.nav__btns {
  display: none;
}

 header{
  margin-top: 5rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
header::before{
  position:absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-image: url(img/background6.jpg); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
}

@media (width <= 768px) {
  header::before {
    display: none;
  }
} 
.header__container{
  display: grid;

}
.header__content{
  /* padding: 2rem 1rem; */
}


  .header__content h2{
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    text-align: center;
  }
  .header__content p{
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: center;
  }
  .header__content h1{
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    text-align: center;
  }

@media (width <= 425px) {
  .header__content h1 {
    font-size: 1.4rem;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
}

  .header__btns{
    display:flex ;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .header__btns .btn{
    padding: 1rem 2rem;
  }
.header__btns a {
  padding: 9px 13px;
  font-size: 1,5rem;
  color: var(--primary-color);
  /* background-color: var(--white); */
  border-radius:100% ;
}
.header__btns a:hover{
color: var(--white);
/* background-color: var(--primary-color); */
}

.destination__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

  .destination__grid{
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;

}
.destination__card img {
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}  


 /* .destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}



.destination__card img {
  width: 80%;
  margin-left: 43px;
  height: 250px;
  border-radius: 1.5rem;
  object-fit: cover;
}  */



.destination__card__details{
  padding:1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;


}
.destination__card__details h4{
margin-bottom: 5px;
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
line-height: 1.4;
}
.destination__card__details p{
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.destination__ratings{
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__ratings{
  background-color: var(--primary-color-dark);
}

.journey__grid{
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card{
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg{
  padding: 2rem;
  background-color:var(--extra-light) ;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span{
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.journey__card__bg p{
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.journey__card__content{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-bottom-left-radius: 1rem;
   border-bottom-right-radius: 1rem;
   transition: 0.3s;
}
  .journey__card:hover .journey__card__content,
  .journey__card.active .journey__card__content{
    top: 0;
  }

  .journey__card__content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
  }

  .journey__card__content h4{
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color:var(--white);
    line-height: 1.4;
  }

  .journey__card__content p{
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.6;
  }

  .showcase__container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
  }
  
  .showcase__image img{
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }

  .showcase__content h2,
  .showcase__content h4{
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
  }

  .showcase__content p{
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  .showcase__content .btn{
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-image: url(img/showcase2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    border-radius: 5px;
  }

  .banner__container{
    display: grid;
    gap: 2rem;
  }

  .banner__card{
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }

.banner__card h4{
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.2;
}

.banner__card p{
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

  .discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.discover__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.destination__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

@media (width > 540px) {
  .header__content h2 {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .header__content p {
    font-size: 1rem;
  }
  .header__content h1 {
    font-size: 3rem;
    line-height: 1.3;
  }

  .section__header {
    font-size: 2rem;
  }

  .section__description {
    font-size: 1rem;
  }

  .destination__card__details h4 {
    font-size: 1.2rem;
  }

  .destination__card__details p {
    font-size: 0.95rem;
  }

  .journey__card__bg h4,
  .journey__card__content h4 {
    font-size: 1.2rem;
  }

  .journey__card__bg p,
  .journey__card__content p {
    font-size: 0.95rem;
  }

  .showcase__content h2,
  .showcase__content h4 {
    font-size: 2.25rem;
  }

  .showcase__content p {
    font-size: 1rem;
  }

  .footer__col h4 {
    font-size: 1.2rem;
  }

  .footer__col p {
    font-size: 0.95rem;
  }

  .footer__links a {
    font-size: 0.95rem;
  }

  .footer__bar {
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.75rem;
  }

  .nav__links a {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
  }

  .discover__card h4 {
    font-size: 1.2rem;
  }

  .discover__card p {
    font-size: 0.95rem;
  }

  .banner__card h4 {
    font-size: 4rem;
  }

  .banner__card p {
    font-size: 1rem;
  }

  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}
  @media(width > 768px) {
    nav {
      position: fixed;
      padding: 1rem;
      max-width: var(--max-width);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2rem;
      margin-top: 1rem;
      width: calc(100% - 2rem);
    }
    
    nav.scrolled {
      background-color: rgba(255, 255, 255, 0.98);
      margin-top: 0;
      border-radius: 0;
      width: 100%;
      left: 0;
      transform: translateX(0);
      padding: 1rem 2rem;
    }
    .nav__header{
      flex: 1;
      padding: 0;
      background-color: transparent;
    }
    /* .nav__logo .logo{
      color: var(--text-dark);
    } */
    .nav__menu__btn{
      display: none;
    }
.nav__links{
  position: static;
  width: fit-content;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: none;
  gap: 1.5rem;
}

.nav__links a{
  color: var(--text-dark);
}

.nav__links a:hover{
  color: var(--primary-color);
}

.nav__links li:last-child{
  display: none;
}

.nav__btns{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__btns .button{
  padding: 75rem 2rem;
  background-color: var(--text-dark);
}
header{
  margin-top: 0;
}
.header__container{
  grid-template-columns:
  minmax(0 ,1fr)
repeat(5, minmax(0, calc(var(--max-width)/ 5)))
minmax(0, 1fr) ;
}
.header__content{
grid-column: 2/4;
padding-block: 8rem;
}
.header__content :is(h2, p, h1){
  text-align: left;
}

.header__content h2 {
  font-size: 2rem;
  line-height: 1.4;
}

.header__content p {
  font-size: 1rem;
}

.header__content h1 {
  font-size: 4rem;
  line-height: 1.3;
}

.section__header {
  font-size: 2.5rem;
}

.section__description {
  font-size: 1.05rem;
}

.destination__card__details h4 {
  font-size: 1.2rem;
}

.destination__card__details p {
  font-size: 1rem;
}

.journey__card__bg h4,
.journey__card__content h4 {
  font-size: 1.2rem;
}

.journey__card__bg p,
.journey__card__content p {
  font-size: 1rem;
}

.showcase__content h2,
.showcase__content h4 {
  font-size: 2.5rem;
}

.showcase__content p {
  font-size: 1.05rem;
}

.footer__col h4 {
  font-size: 1.2rem;
}

.footer__col p {
  font-size: 1rem;
}

.footer__links a {
  font-size: 1rem;
}

.footer__bar {
  font-size: 0.9rem;
}

.logo {
  font-size: 1.75rem;
}

.nav__links a {
  font-size: 1.05rem;
}

.btn {
  font-size: 1.05rem;
}

.discover__card h4 {
  font-size: 1.2rem;
}

.discover__card p {
  font-size: 1rem;
}

.banner__card h4 {
  font-size: 4.5rem;
}

.banner__card p {
  font-size: 1.05rem;
}

.header__btns{
  justify-content: flex-start;
}
.header__image{
  grid-column: 4.5/8;
  position: relative;
  isolation: isolate;
  height: 100%;
}
.header__image img{
  position: absolute;
  top: 2rem;
  left: 0;
  height: 100%;
  width: unset;
}
.destination__grid{
  grid-template-columns: repeat(3, 1fr);
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(3, 1fr);
}

.showcase__content{
  grid-column: 2/4;
} 

.banner__container{
  grid-template-columns: repeat(3, 1fr);
}
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}

/* Tour Section Styles */
.tour-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f5fdf7, #ffffff);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tour-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tour-subtitle {
  color: #4b6b57;
  margin-bottom: 50px;
  font-size: 16px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tour-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.tour-card h3 {
  margin-bottom: 12px;
  color: #1f8707;
}

.tour-card p {
  line-height: 1.6;
  color: #333;
}

.tour-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tour-features li {
  background: #1f8707;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 16px;
}

  @media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .header__content h2 {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .header__content p {
    font-size: 1.1rem;
  }
  .header__content h1 {
    font-size: 4.5rem;
    line-height: 1.2;
  }

  .section__header {
    font-size: 2.75rem;
  }

  .section__description {
    font-size: 1.1rem;
  }

  .destination__card__details h4 {
    font-size: 1.3rem;
  }

  .destination__card__details p {
    font-size: 1.05rem;
  }

  .journey__card__bg h4,
  .journey__card__content h4 {
    font-size: 1.3rem;
  }

  .journey__card__bg p,
  .journey__card__content p {
    font-size: 1.05rem;
  }

  .showcase__content h2,
  .showcase__content h4 {
    font-size: 2.75rem;
  }

  .showcase__content p {
    font-size: 1.1rem;
  }

  .footer__col h4 {
    font-size: 1.3rem;
  }

  .footer__col p {
    font-size: 1.05rem;
  }

  .footer__links a {
    font-size: 1.05rem;
  }

  .footer__bar {
    font-size: 1rem;
  }

  .logo {
    font-size: 2rem;
  }

  .nav__links a {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 1.1rem;
  }

  .discover__card h4 {
    font-size: 1.3rem;
  }

  .discover__card p {
    font-size: 1.05rem;
  }

  .banner__card h4 {
    font-size: 5rem;
  }

  .banner__card p {
    font-size: 1.1rem;
  }

  .destination__grid {
    gap: 2rem;
  }
}

@media (width <= 1024px) {
  .tour-section {
    padding: 60px 18px;
    background: linear-gradient(180deg, #f5fdf7, #ffffff);
  }

  .tour-title {
    font-size: 28px;
  }

  .tour-grid {
    gap: 18px;
  }

  .tour-card {
    padding: 20px;
  }
}

@media (width <= 768px) {
  .tour-section {
    padding: 40px 15px;
    background: linear-gradient(180deg, #f5fdf7, #ffffff);
  }

  .container {
    padding: 0 10px;
  }

  .tour-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .tour-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .tour-card {
    flex: 0 1 auto;
    min-width: 200px;
    max-width: 300px;
  }
  
  .tour-card {
    background: #ffffff;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
  }
  
  .tour-card h3 {
    margin-bottom: 10px;
    color: #1f8707;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .tour-card p {
    line-height: 1.5;
    color: #333;
    font-size: 0.75rem;
  }

  .tour-features {
    gap: 10px;
  }

  .tour-features li {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (width <= 425px) {
  .tour-section {
    padding: 30px 10px;
  }

  .tour-title {
    font-size: 20px;
  }

  .tour-grid {
    gap: 8px;
  }
  
  .tour-card {
    /* width: 150px; */
    width: 300px;
  }

  .tour-card {
    padding: 12px;
  }

  .tour-card h3 {
    font-size: 0.85rem;
  }

  .tour-card p {
    font-size: 14px;
  }

  .tour-features li {
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* Zalo float */
.zalo-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #0068ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zalo-float img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.zalo-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Facebook float */
.facebook-float {
  position: fixed;
  bottom: 90px; /* nằm phía trên icon Zalo */
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #1877f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook-float i {
  color: #fff;
  font-size: 24px;
}

.facebook-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Phone float */
.phone-float {
  position: fixed;
  bottom: 160px; /* cao hơn Facebook và Zalo */
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: var(--primary-color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-float i {
  color: #fff;
  font-size: 22px;
}

.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.tour-features {
  list-style: none;
  padding: 0;
  color: #fff;
  margin-bottom: 120px;
}

.tour-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.tour-features i {
  color: #fff;
}

.destinations {
  padding: 60px 20px;
  /* background: #f9fafb; */
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

.destination-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
}

.img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.12);
}

.destination-card h3 {
  padding: 14px;
  text-align: center;
  font-size: 18px;
  color: #333;
}

/* 📱 Mobile */
@media (max-width: 480px) {

  .img-wrap {
    height: 200px;
  }
}
