@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Icon */
.icon img {
  margin: 0;
  padding: 0;
  gap: 0;
  width: 62px;
  height: 62px;
  position: absolute;
  top: 8px;
  left: 135px;
}
/*SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* NAVBAR */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.logo {
  text-decoration: none;
  font-size: 1.5rem;
  color: #111;
  font-family: "Titan One", sans-serif;
}

.logo-text {
  color: #f59e0b;
  font-size: 2rem;
}

/* NAV */
.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

/* HOVER */
.nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #f59e0b;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav.active {
    display: flex;
  }
}

/* FIX SCROLL OFFSET */
section {
  scroll-margin-top: 90px;
}

/* HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg,#fff8e7,#fde68a);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-family: "Titan One", sans-serif;
}

.hero-title span {
  color: #f59e0b;
}

.hero-text {
  margin: 20px 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-btn {
  padding: 12px 25px;
  border-radius: 30px;
  background: #f59e0b;
  color: white;
  text-decoration: none;
}

.hero-btn.secondary {
  background: white;
  color: black;
  border: 2px solid #f59e0b;
}



/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff8e7 0%, #fef3c7 45%, #fde68a 100%);
  z-index: -2;
}

/* Floating shapes */
.hero-section::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  filter: blur(40px);
}

/* Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

/* Content */
.hero-content {
  text-align: left;
}

/* Tag */
.hero-tag {
  display: inline-block;
  margin-bottom: 1rem;
  color: #d97706;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: "Titan One", sans-serif;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1.25rem;
}

/* Highlight word */
.hero-title span {
  color: #f59e0b;
}

/* Text */
.hero-text {
  max-width: 520px;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Secondary button */
.hero-btn.secondary {
  background: white;
  color: #111827;
  border: 2px solid #f59e0b;
}

.hero-btn.secondary:hover {
  background: #f59e0b;
  color: white;
}

/* Image */
.hero-image img {
  width: 100%;
  max-width: 880px;
  display: block;
  margin-left: auto;
  /* animation: float 4s ease-in-out infinite; */
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 992px) {
.hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
.hero-title{
  align-items: end;
}
.hero-content {
    text-align: center;
  }

.hero-text {
    margin: 0 auto 2rem;
    
  }

.hero-image img {
    margin: 0 auto;
  }

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



/* About Section */
.background {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffe3a1, #fde68a);
  
}
/* New styles */

/* Grid layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.about-text h2 {
  font-size: 2.5rem;
  margin: 15px 0;
  color: #111827;
}

.about-text p {
  margin-bottom: 15px;
  color: #374151;
  line-height: 1.7;
}

/* Tag */
.about-tag h1 {
  text-align: center;
}

/* Stats */
.about-stats {

  display: flex;
  gap: 30px;
  margin: 25px 0;
}
.border{
  padding: 5px 15px;
  border-radius: 10px;
  background: rgb(193, 193, 193);
}
.about-stats h3 {
  color: #000000;
  font-size: 1.5rem;
}

.about-stats p {
  font-size: 0.85rem;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f59e0b;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #d97706;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGE FIX */
.about-image img {
  width: 100%;
  max-width: 420px;
  height: 500px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

/* Decorative border (FIXED POSITION) */
.about-image::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 52%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  border: 2px solid #111;
  border-radius: 20px;
  z-index: 1;
}

/* Decorative border 
.about-image::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100%;
  border: 2px solid #111;
  border-radius: 20px;
  z-index: 1;
}
*/
/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }
}
.about-tag h1 {
  font-weight: 800;
  font-family: Arial, sans-serif;
}




/* Gallery Section */
.slider-card {
  margin-top: 50px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.slider {
  position: relative;
  width: 100%;
  height: 600px;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease;
  transform: scale(1.1);
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  animation: zoomEffect 5s ease forwards;
}

@keyframes zoomEffect {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* Text overlay */
.overlay {
  position: absolute;
  left: 60px;
  bottom: 60px;
  color: white;
  z-index: 2;
  max-width: 500px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
}

.overlay h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.overlay p {
  margin-bottom: 15px;
}

.overlay button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #f59e0b;
  color: white;
  cursor: pointer;
}

.overlay button:hover {
  background: #d97706;
}

/* Controls */
.slider-controls {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* Counter */
.slide-count {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  color: white;
  z-index: 5;
}

@media (max-width: 768px) {
  .nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .hero-section {
    padding-top: 140px;
  }

  .slider {
    height: 480px;
  }

  .overlay h3 {
    font-size: 2rem;
  }

  .overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 100%;
  }
}
.section-heading{
  margin-top: 150px;
}
.section-heading h1{
  text-align: center;
  font-weight: 800;
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.2rem;
  }

  .nav-wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding: 14px 0;
  }

  .slider {
    height: 400px;
  }

  .slider-controls {
    right: 15px;
    bottom: 15px;
  }

  .slider-controls button {
    width: 46px;
    height: 46px;
  }
}
/* Hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    display: none;
  }

  .nav.active {
    display: flex;
  }
}




/* Destination section */
.Destination-section{
  margin-top: 150px;

}
.container h1,h3{
  text-align: center;
}
.container h1{
  font-weight: 800;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 15px;
  font-size: 1.2rem;
}

.card p {
  margin: 0 15px 15px 15px;
  font-size: 0.9rem;
  color: #555;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-tabs .tab-btn {
  padding: 8px 20px;
  border: none;
  background: #ffbf29;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.filter-tabs .tab-btn.active,
.filter-tabs .tab-btn:hover {
  background: #f59e0b;
}

/* Services Section */
.Services-section {
  padding: 100px 0;
  margin-top: 50px;
}
.Services-section h1 {
  text-align: center;
  
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}


/*Tour Booking Section */
.booking-section {
  margin-top: -5px;
  padding: 80px 20px;
  /*background: linear-gradient(to right, #f5f7fa, #e4ecf7);*/
  text-align: center;
}

.section-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  margin-bottom: 50px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.plan-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.plan-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Image */
.plan-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.plan-content {
  padding: 20px;
}

.plan-content h2 {
  margin-bottom: 10px;
}

.plan-content p {
  color: #777;
  margin-bottom: 20px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff7a00;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e66a00;
}




/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffe3a1, #fde68a);
  font-family: Arial, sans-serif;
}

.section-header h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.contact-card {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 200px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  color: #333;
  text-decoration: none;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #007bff;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 30px auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #0056b3;
}

.cta-text {
  text-align: center;
  font-weight: bold;
  color: #000000;
}
/* Testimonial Section */
.Testimonial-section{
  padding: 100px 0;
  background: linear-gradient(135deg, #ffe3a1, #fde68a);
  
}

/* Footer */
/* Footer Section */
.footer-section {
  position: absolute;
  margin-top: 60px;
  width: 100%;
  background-color: #1b1b1b;
  color: #fff;
  padding: 60px 20px 30px 20px;
  font-family: Arial, sans-serif;
}

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

/* Footer Top - Columns */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Footer Links */
.footer-nav h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #00b894; /* highlight color */
}

/* Contact Info */
.footer-contact p {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-contact i {
  margin-right: 8px;
  color: #00b894;
}

/* Social Media */
.footer-social a {
  color: #ccc;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00b894;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

/* new responsive */
/* =========================
   GLOBAL RESPONSIVE FIXES
========================= */

/* Prevent overflow */
body {
  overflow-x: hidden;
}

/* Images always responsive */
img {
  max-width: 100%;
  height: auto;
}

/* =========================
   NAVBAR FIX
========================= */

@media (max-width: 768px) {

  .nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
  }

  .logo {
    font-size: 1rem;
  }

  /* FIX elephant icon position */
  .icon img {
    position: static;
    width: 45px;
    height: 45px;
  }

}

/* =========================
   HERO SECTION FIX
========================= */

@media (max-width: 992px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

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

}

@media (max-width: 576px) {

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

}

/* =========================
   ABOUT SECTION FIX
========================= */

@media (max-width: 992px) {

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image::after {
    display: none;
  }

}

/* =========================
   GALLERY FIX
========================= */

@media (max-width: 768px) {

  .slider {
    height: 400px;
  }

  .overlay h3 {
    font-size: 1.5rem;
  }

  .overlay {
    left: 15px;
    bottom: 15px;
  }

}

/* =========================
   DESTINATION FIX
========================= */

@media (max-width: 768px) {

  .destination-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================
   SERVICES FIX
========================= */

@media (max-width: 768px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

}

/* =========================
   BOOKING FIX
========================= */

@media (max-width: 768px) {

  .plans {
    grid-template-columns: 1fr;
  }

}

/* =========================
   SPACING FIX
========================= */

@media (max-width: 576px) {

  section {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1rem;
  }

}
/*send email messages notification*/
#messageBox {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: white;
  z-index: 9999;
  transition: top 0.5s ease;
}
#loadingBox {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  background: #3498db;
  color: white;
  animation: pulse 1.2s infinite;
}

/* simple pulse animation */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}
#messageBox.show {
  top: 0;
}

#messageBox.success {
  background: #28a745;
}

#messageBox.error {
  background: #dc3545;
}
.sub-btn {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}
/* Responsive */
@media (max-width: 768px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
}