*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
/* ===== Css Logo ====== */
.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.logo img {
  width: 70px;      /* chỉnh nhỏ / to ở đây */
  height: auto;
}

body{
  color:#fff;
  background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.55)),
    url('../images/background/sups.webp')
    center/cover fixed no-repeat;
  background-size: cover;
  background-position: center;
}

/* ================== UTIL ================== */
.fade{
  opacity:0;
  transform:translateY(30px);
  transition:.8s ease;
}
.fade.show{
  opacity:1;
  transform:none;
}

.gold{
  color:#ffd369; /* VÀNG 1 MÀU – KHÔNG HIỆU ỨNG */
}

/* ================== LAYOUT ================== */
.container{
  max-width:1100px;
  margin:auto;
  padding:60px 20px 40px; /* giảm bottom để gần footer */
}

/* ================== HEADER ================== */
header{
  text-align:center;
  margin-bottom:55px;
}

header h1{
  font-size:42px;
}

header p{
  margin-top:14px;
  color:#eee;
}

/* ================== TOURS ================== */
.tours{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}

.card{
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  border-radius:26px;
  overflow:hidden;
}

.card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.card-body{
  padding:26px;
}

.card-body h3{
  font-size:22px;
}

.card-body p{
  margin:12px 0 20px;
  color:#ddd;
  font-size:14px;
}

.card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.price{
  font-size:18px;
  font-weight:600;
}

.btn{
  background:#ffd369;
  color:#fff;
  padding:10px 22px;
  border-radius:30px;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
}
.btn:hover{
  background:rgba(0,0,0,.85);
}

/* ================== FOOTER (GẦN TOURS HƠN) ================== */
footer{
  margin-top:50px; /* <<< giảm mạnh để gần tours */
  padding:30px 20px 25px;
}

.footer-accordion{
  max-width:900px;
  margin:auto;
}

/* Accordion item – hòa nền ảnh */
.acc-item{
  margin-bottom:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(4px);
}

/* Header */
.acc-header{
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  color:#fff;
  font-size:16px;
}

.acc-header i{
  transition:.4s;
}

.acc-item.active .acc-header i{
  transform:rotate(180deg);
}

/* Content */
.acc-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
  padding:0 22px;
  color:#eee;
  font-size:14px;
}

.acc-item.active .acc-content{
  padding:0 22px 22px;
  max-height:260px;
}

.policy-links a {
  color: inherit !important;
  text-decoration: none;
}

/* Social */
.social a{
  display:inline-flex;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.3);
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-right:10px;
}

/* Address */
.address{
  border:1px dashed rgba(255,255,255,.3);
  padding:14px;
  border-radius:14px;
}

/* Footer bottom */
.footer-bottom{
  text-align:center;
  margin-top:28px;
  font-size:13px;
  color:#eee;
}

@media (max-width: 768px) {
  /* ===== Css Logo ====== */
.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.logo img {
  width: 50px;      /* chỉnh nhỏ / to ở đây */
  height: auto;
}
}