:root{
  --orange:#f5a623;
  --dark:#22262b;
  --darker:#1a1d21;
  --text-gray:#7a7f87;
  --light-bg:#f7f7f8;
  --white:#ffffff;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:'Poppins',sans-serif;
  color:#333;
  line-height:1.6;
  overflow-x:hidden;
}

h1,h2,h3,h4,.logo-title,.tour-info span:first-child,.badge,.btn{
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

a{text-decoration:none;color:inherit;}
ul{list-style:none;}

/* BUTTONS */
.btn{
  display:inline-block;
  padding:14px 32px;
  font-size:13px;
  font-weight:600;
  border-radius:30px;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
  border:2px solid var(--orange);
}
.btn-primary:hover{
  background:transparent;
  color:var(--orange);
}
.btn-outline{
  background:transparent;
  color:#fff;
  border:2px solid #fff;
}
.btn-outline:hover{
  background:#fff;
  color:var(--dark);
}

/* DIVIDER */
.divider{
  width:70px;
  height:10px;
  margin:18px 0 24px;
  background-image:repeating-linear-gradient(45deg, var(--orange) 0 2px, transparent 2px 5px);
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='10' viewBox='0 0 70 10'%3E%3Cpath d='M0 5 Q 5 0 10 5 T 20 5 T 30 5 T 40 5 T 50 5 T 60 5 T 70 5' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='10' viewBox='0 0 70 10'%3E%3Cpath d='M0 5 Q 5 0 10 5 T 20 5 T 30 5 T 40 5 T 50 5 T 60 5 T 70 5' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-color:var(--orange);
}
.divider.center{margin-left:auto;margin-right:auto;}
.divider.small{width:50px;margin:14px 0 16px;}

/* TOPBAR */
.topbar{
  background:var(--darker);
  color:#c9cbd0;
  font-size:13px;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
  flex-wrap:wrap;
  gap:10px;
}
.topbar-left{display:flex;gap:26px;flex-wrap:wrap;}
.topbar-item i{color:var(--orange);margin-right:6px;}
.topbar-social{display:flex;gap:14px;}
.topbar-social a{
  color:#c9cbd0;
  transition:color .2s;
}
.topbar-social a:hover{color:var(--orange);}

/* HEADER */
.site-header{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  position:relative;
  z-index:20;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 20px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-icon{
  font-size:34px;
  color:var(--orange);
}
.logo-text{display:flex;flex-direction:column;line-height:1.2;}
.logo-title{
  font-family:'Playfair Display', 'Georgia', serif;
  font-size:24px;
  font-style:italic;
  color:var(--dark);
  text-transform:none;
  display:flex;
  align-items:center;
  gap:8px;
}
.tag{
  background:var(--orange);
  color:#fff;
  font-size:10px;
  font-style:normal;
  font-family:'Oswald',sans-serif;
  padding:2px 6px;
  border-radius:3px;
  letter-spacing:1px;
}
.logo-sub{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#9a9a9a;
}

/* HERO */
.hero{
  position:relative;
  height:88vh;
  min-height:560px;
  overflow:hidden;
}
.hero-slider{
  position:absolute;
  inset:0;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}
.hero-slide.active{opacity:1;}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(20,30,45,.55) 0%, rgba(20,30,45,.25) 55%, rgba(20,30,45,.15) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:640px;
  color:#fff;
}
.hero-content h1{
  font-size:52px;
  font-weight:600;
  letter-spacing:1px;
}
.hero-content p{
  font-size:16px;
  color:#e7e9ec;
  margin-bottom:28px;
  max-width:540px;
}

.hero-dots{
  position:absolute;
  bottom:26px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
  transition:background .2s;
}
.dot.active{background:var(--orange);}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.15);
  border:none;
  color:#fff;
  width:46px;height:46px;
  border-radius:50%;
  cursor:pointer;
  font-size:16px;
  z-index:3;
  transition:background .2s;
}
.hero-arrow:hover{background:rgba(255,255,255,.35);}
.hero-arrow-left{left:24px;}
.hero-arrow-right{right:24px;}

/* SECTIONS */
.section{
  padding:90px 0;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:50px;
  position:relative;
}
.section-head.center{
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.ghost-text{
  position:absolute;
  top:-40px;
  left:0;
  font-size:70px;
  font-weight:700;
  color:#f1f1f2;
  letter-spacing:10px;
  z-index:0;
  font-family:'Oswald',sans-serif;
}
.section-head h2{
  position:relative;
  font-size:34px;
  font-weight:600;
  color:var(--dark);
}

/* TOURS */
.tour-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.tour-card{
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 6px 22px rgba(0,0,0,.08);
  background:#fff;
  transition:transform .3s ease;
}
.tour-card:hover{transform:translateY(-6px);}
.tour-img{
  height:220px;
  background-size:cover;
  background-position:center;
}
.tour-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  font-size:15px;
}
.tour-info .price{
  color:var(--orange);
  font-weight:600;
}

/* SERVICES */
.services{background:var(--light-bg);}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.service-card{
  background:#fff;
  padding:36px 28px;
  border-radius:6px;
  text-align:left;
  transition:transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,.07);
}
.service-icon{
  font-size:34px;
  color:var(--orange);
}
.service-card h3{
  margin-top:16px;
  font-size:18px;
  color:var(--dark);
}
.service-card p{
  font-size:14px;
  color:var(--text-gray);
}

/* NEWS */
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.news-card{
  border:1px solid #ececec;
  border-radius:6px;
  overflow:hidden;
  transition:transform .3s ease;
}
.news-card:hover{transform:translateY(-6px);}
.news-img{
  height:200px;
  background-size:cover;
  background-position:center;
}
.news-body{padding:22px;}
.news-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
  font-size:12px;
}
.badge{
  background:var(--orange);
  color:#fff;
  padding:4px 12px;
  border-radius:20px;
  font-size:11px;
  font-weight:600;
}
.news-author a{color:#4a5ad0;}
.news-author{color:var(--text-gray);}
.news-body h3{
  font-family:'Poppins',sans-serif;
  text-transform:none;
  font-size:18px;
  font-weight:500;
  color:var(--dark);
  margin-bottom:20px;
  letter-spacing:0;
}
.news-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #ececec;
  padding-top:14px;
  font-size:12px;
  color:#b7b9bd;
}
.center-btn{
  text-align:center;
  margin-top:50px;
}

/* TESTIMONIALS */
.testimonials{background:var(--light-bg);}
.testimonial-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  max-width:900px;
  margin:0 auto;
}
.testimonial-track{
  position:relative;
  flex:1;
  min-height:220px;
}
.testimonial{
  display:none;
  align-items:center;
  gap:40px;
  text-align:left;
  opacity:0;
  animation:fadeIn .5s ease forwards;
}
.testimonial.active{display:flex;}
@keyframes fadeIn{
  from{opacity:0;transform:translateY(8px);}
  to{opacity:1;transform:translateY(0);}
}
.test-avatar img{
  width:110px;
  height:110px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.test-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:36px;
}
.test-dot{
  width:10px;height:10px;border-radius:50%;
  background:#d9dadd;
  cursor:pointer;
  transition:background .2s;
}
.test-dot.active{background:var(--orange);}
.quote-icon{
  color:var(--orange);
  font-size:26px;
  margin-bottom:10px;
  display:block;
}
.test-content p{
  color:#54585e;
  font-size:15px;
  margin-bottom:18px;
}
.test-content h4{
  color:#4a5ad0;
  font-size:16px;
}
.test-content span{
  font-size:13px;
  color:var(--text-gray);
}
.test-arrow{
  background:var(--orange);
  color:#fff;
  border:none;
  width:42px;height:42px;
  border-radius:50%;
  cursor:pointer;
  flex-shrink:0;
  transition:background .2s;
}
.test-arrow:hover{background:#e2950f;}

/* CTA BANNER */
.cta-banner{
  background:var(--darker);
  padding:60px 0;
}
.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
}
.cta-inner h2{
  color:var(--orange);
  font-size:28px;
  margin-bottom:10px;
}
.cta-inner p{
  color:#c9cbd0;
  font-size:15px;
}

/* FOOTER */
.site-footer{
  background:var(--darker);
  padding:36px 0;
  border-top:1px solid #2b2f34;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.footer-logo .logo-title{color:#fff;}
.footer-copy{
  color:#8b8e93;
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .tour-grid{grid-template-columns:repeat(2,1fr);}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .news-grid{grid-template-columns:1fr;}
  .hero-content h1{font-size:40px;}
}
@media(max-width:768px){
  .topbar-left{display:none;}
  .topbar-inner{justify-content:flex-end;}
  .header-inner{flex-direction:column;gap:14px;}
  .section-head{flex-direction:column;align-items:flex-start;gap:16px;}
  .tour-grid{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .testimonial{flex-direction:column;text-align:center;}
  .testimonial-wrap{flex-direction:row;}
  .cta-inner{flex-direction:column;text-align:center;}
  .hero-content h1{font-size:32px;}
  .ghost-text{display:none;}
}
