body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('../images/bg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* LEFT DARK GRADIENT */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.6) 30%,
    rgba(0,0,0,0.2) 55%,
    rgba(0,0,0,0) 75%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* LOGO */
.logo {
  width: 70px;
}

/* BADGE */
.location-badge {
  background: #f5a623;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
}

/* TITLE */
.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  letter-spacing: 1px;
  line-height: 1;
}

/* DESCRIPTION */
.description {
  color: #ddd;
  max-width: 480px;
  font-size: 15px;
}

/* PHONE ICON */
.phone-icon {
  width: 50px;
  height: 50px;
  background: #f5a623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT SECTION */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SLIDER */
.card-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
/* CARDS (NOW JUST IMAGES) */
.hero-card {
  width: 260px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

/* BOTTOM WRAPPER */
.slider-bottom {
  position: relative;
  margin-top: 40px;
  width: 100%;
}
/* LINE (more subtle & centered visually) */
.line {
  height: 2px;
  width: 80%;
  margin: 0 auto;
  background: rgba(255,255,255,0.4);
}

/* ARROWS */
.arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* PERFECT CENTER */
  display: flex;
  gap: 12px;
}

.arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: 0.3s;
}

.arrows button:hover {
  background: #f5a623;
  color: white;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .card-slider {
    transform: none;
    overflow-x: auto;
  }

  .arrows {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 48px;
  }

  .hero-card {
    width: 200px;
    height: 280px;
  }
}

/* BUTTON STYLE */
.arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ABOUT SECTION */
.about-section {
  background: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* OPTIONAL CITY SILHOUETTE EFFECT */
.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('../images/city.png') bottom center no-repeat;
  background-size: cover;
  opacity: 0.2;
}

/* LABEL */
.about-label {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 1px;
}

/* TITLE */
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1.1;
}

.about-title span {
  color: #aaa; /* lighter second line */
}

/* TEXT */
.about-text {
  font-family: 'Inter', sans-serif;
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}

/* BUTTON */
.about-btn {
  background: #f5a623;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
}

.about-btn:hover {
  background: #ffb84d;
}

/* IMAGE */
.about-img {
  width: 600px;
  border-radius: 20px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 40px;
  }

  .about-img {
    max-width: 100%;
  }
}

/* SECTION */
.tours-section {
  background: #f5f5f5;
  padding: 100px 0;
}

/* TEXT */
.tours-label {
  color: #f5a623;
  font-size:20px;
}

.tours-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: #444;
}

.tours-sub {
  font-family: 'Inter', sans-serif;
  color: #777;
 
}

/* SLIDER WRAPPER */
.tours-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* SLIDER TRACK */
.tours-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}


/* SHOW 4 CARDS */
.tour-item {
  flex: 0 0 calc(25% - 15px); /* 👈 4 cards */
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.tour-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.tour-overlay {
  position: absolute;
  bottom: 0;
  padding: 15px;
  width: 100%;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.tour-overlay h5 {
  color: #f5a623;
  font-weight: 700;
}

/* CONTROLS */
.tours-controls {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.tours-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
}

/* CTA */
.book-btn {
  background: #f5a623;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
      margin-top: -135px;
}

/* TOP BADGE */
.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.tour-badge span:last-child {
  color: #f5a623;
  font-weight: 600;
}

/* STRONGER DARK OVERLAY */
.tour-overlay {
  position: absolute;
  bottom: 0;
  padding: 18px;
  width: 100%;
  color: white;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.6),
    transparent
  );
}
/* TEXT */
.tour-overlay h5 {
  color: #f5a623;
  font-weight: 700;
  font-size: 16px;
}

.tour-overlay p {
  font-size: 13px;
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tour-item {
    flex: 0 0 calc(50% - 10px); /* 2 cards */
  }
}

@media (max-width: 576px) {
  .tour-item {
    flex: 0 0 100%; /* 1 card */
  }
}

/* SECTION */
.why-section {
  background: #000;
  padding: 100px 0;
  position: relative;
}

/* LABEL */
.why-label {
  color: #f5a623;
  font-size: 20px;
}

/* TITLE */
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
}

.why-title span {
  color: #888;
}

/* SUBTEXT */
.why-sub {
  font-family: 'Inter', sans-serif;
  color: #bbb;
 
}

/* FEATURE CARD */
.why-card {
  background: #eee;
  color: #000;
  border-radius: 40px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  height: 100%;
}

.why-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* RIGHT IMAGE SECTION */
.why-img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* BACKGROUND BLOCK */
.why-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 120%;
  background: #1f6f6f;
  z-index: 1;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-bg {
    display: none;
  }

  .why-title {
    font-size: 40px;
  }
}

.why-card {
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  background: #fff;
}

.testimonial-section {
  background: #f3f3f3;
  padding: 100px 0;
}

/* TITLE */
.test-title {
  font-family: 'Bebas Neue';
  font-size:120px;
  background: linear-gradient(
    to right,
    #111 0%,
    #444 40%,
    #aaa 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.test-sub {
  margin: 0 auto 60px;
  color: #777;
}

/* WRAPPER */
.testimonial-wrapper {
  position: relative;
}

/* VIEWPORT (IMPORTANT) */
.testimonial-viewport {
  overflow: hidden;
}

/* SLIDER */
.testimonial-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
  flex: 0 0 calc(25% - 20px);
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

/* HIGHLIGHT CENTER CARD */
.testimonial-card.active {
  transform: scale(1.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* IMAGE */
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card span {
  color: #888;
}

.stars {
  color: #f5a623;
  margin: 10px 0;
}

/* ARROWS */
.test-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  z-index: 5;
}

.test-arrow.left {
  left: -70px;
}

.test-arrow.right {
  right: -70px;
}

span.test-label {
    color: #f5a623;
    font-size: 20px;
}

.gallery-section {
  position: relative;
  padding: 120px 0;
  background: url('../images/gallery-bg.png') center/cover no-repeat;
}

.gallery-section .overlay {
  position: absolute;
  inset: 0;
    background: rgb(0 0 0 / 91%);
  }

.gallery-section .container {
  position: relative;
  z-index: 2;
}

/* TEXT */
.gallery-label {
  color: #f5a623;
  font-family: 'Inter';
  font-size: 20px;
}

.gallery-title {
     font-family: 'Bebas Neue';
    font-size: 120px;
    background: linear-gradient(to right, #111 0%, #444 40%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.gallery-sub {
  color: #ccc;
  margin: 0 auto 50px;
font-size: 20px;
}

/* SLIDER */
.gallery-wrapper {
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARDS */
.gallery-card {
  flex: 0 0 calc(25% - 20px); /* 4 cards */
}

.gallery-card img {
      width: 100%;
    height: 457px;

  object-fit: cover;
  border-radius: 25px;
}

/* CONTROLS */
.gallery-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery-controls button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
}

/* SECTION */
.contact-section {
  background: #000;
  padding: 100px 0;
}

/* IMAGE */
.contact-image img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  height: 620px;
}

/* CARD */
.contact-card {
  background: #111;
  padding: 40px;
  border-radius: 25px;
}

/* LABEL */
.contact-label {
  color: #f5a623;
  font-size: 20px;
  font-family: 'Inter';
}

/* TITLE */
.contact-title {
  font-family: 'Bebas Neue';
  font-size: 75px;
  color: #fff;
  margin: 10px 0 25px;
  line-height: 1.1;
}

/* INPUTS */
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 15px;
  border-radius: 25px;
  background: #eee;
  font-family: 'Inter';
  font-size: 14px;
}

/* TEXTAREA */
.contact-card textarea {
  border-radius: 15px;
  resize: none;
}

/* BUTTON */
.send-btn {
  margin-top: 20px;
  background: #f5a623;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 20px;
  font-family: 'Inter';
  margin-right: 326px;
  
}

/* HOVER */
.send-btn:hover {
  background: #e69500;
}

.contact-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.footer-section {
  background: #f5f5f5;
  padding: 50px 0 20px;
  text-align: center;
}

/* LOGO */
.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: 'Inter';
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-social i {
  font-size: 16px;
  cursor: pointer;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: #ccc;
  margin: 20px 0;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  color: #555;
  font-family: 'Inter';
}
@media (max-width: 1200px) {

  .title { font-size: 60px; }

  .about-title,
  .tours-title,
  .why-title,
  .test-title,
  .gallery-title {
    font-size: 70px;
  }

  .contact-title {
    font-size: 55px;
  }

  .hero-card {
    width: 220px;
    height: 320px;
  }

}

@media (max-width: 992px) {

  /* HERO */
  .hero {
    height: auto;
    padding: 80px 0;
  }

  .title {
    font-size: 50px;
  }

  .description {
    max-width: 100%;
  }

  .hero-right {
    margin-top: 40px;
  }

  .card-slider {
    transform: none;
    overflow-x: auto;
  }

  .slider-bottom {
    margin-top: 20px;
  }

  /* ABOUT */
  .about-title {
    font-size: 50px;
  }

  .about-img {
    width: 100%;
    margin-top: 30px;
  }

  /* TOURS */
  .tours-title {
    font-size: 50px;
  }

  .tour-item {
    flex: 0 0 calc(50% - 10px);
  }

  .book-btn {
    margin-top: 20px;
  }

  /* WHY */
  .why-title {
    font-size: 50px;
  }

  .why-bg {
    display: none;
  }

  /* TESTIMONIAL */
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }

  .test-title {
    font-size: 60px;
  }

  .test-arrow.left { left: 10px; }
  .test-arrow.right { right: 10px; }

  /* GALLERY */
  .gallery-card {
    flex: 0 0 calc(50% - 15px);
  }

  .gallery-title {
    font-size: 60px;
  }

  /* CONTACT */
  .contact-title {
    font-size: 50px;
  }

  .contact-image img {
    height: auto;
  }

}

@media (max-width: 768px) {

  /* HERO */
  .title {
    font-size: 40px;
  }

  .hero-card {
    width: 180px;
    height: 250px;
  }

  .location-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  /* ABOUT */
  .about-title {
    font-size: 36px;
  }

  .about-text {
    font-size: 14px;
  }

  /* TOURS */
  .tours-title {
    font-size: 40px;
  }

  .tour-item {
    flex: 0 0 100%;
  }

  /* WHY */
  .why-title {
    font-size: 40px;
  }

  .why-card {
    font-size: 13px;
    padding: 10px;
  }

  /* TESTIMONIAL */
  .testimonial-card {
    flex: 0 0 100%;
  }

  .test-title {
    font-size: 45px;
  }

  /* GALLERY */
  .gallery-card {
    flex: 0 0 100%;
  }

  .gallery-title {
    font-size: 45px;
  }

  .gallery-card img {
    height: 300px;
  }

  /* CONTACT */
  .contact-title {
    font-size: 40px;
  }

  .contact-card {
    padding: 25px;
  }

}

@media (max-width: 480px) {

  .title {
    font-size: 32px;
  }

  .about-title,
  .tours-title,
  .why-title,
  .test-title,
  .gallery-title {
    font-size: 32px;
  }

  .contact-title {
    font-size: 32px;
  }

  .footer-social {
    flex-direction: column;
    gap: 8px;
  }

}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible; /* ✅ ADD THIS */
}

.hero-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.phone-icon i {
  color: #fff;
}

.footer-social a {
  color: inherit;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f5a623;
  transform: translateY(-2px);
}

