* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ==================================HEADER=================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;
  background: #000000;
  color: #ffffff;
  z-index: 999999;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #ffd700;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.menu a:hover {
  color: #000000;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  top: 35px;
  left: 0;
  min-width: 150px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: #333;
  display: block;
  padding: 10px;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
}

.login-btn {
  background: #e63c1f;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  text-decoration: none;
}

.login-btn:hover {
  background: #ffffff;
  color: rgb(0, 0, 0);
}

.nav-link {
  color: #fff;
  padding: 8px 15px;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .menu {
    gap: 15px;
  }

  .nav-item {
    padding-right: 5px;
  }
}

.nav-item {
  padding-right: 10px;
}

/* ===========header responce============= */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 30px;
  }

  .menu {
    gap: 20px;
  }

  .menu a {
    font-size: 14px;
  }

  .login-btn {
    padding: 6px 16px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 15px;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
  }

  .login-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

/* ====================================HERO SECTION======================================================== */

html,
body {
  overflow-x: hidden;
}

.hero {
  width: 100%;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.678);
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  color: #fff;
  z-index: 2;
  padding: 3em 20px;
}

.hero-tag {
  display: inline-block;
  background: #e63c1f;
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* BUTTONS */
.btn {
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #e63c1f;
  color: #0f172a;
}

.primary:hover {
  background: #9cd323;
}

.outline {
  border: 2px solid #e63c1f;
  color: #9cd323;
}

.outline:hover {
  background: #9cd323;
  color: #0f172a;
}

.dark {
  background: #0f172a;
  color: #fff;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ====================HOME PAGE======================= */

.travel-section {
  position: relative;
  padding: 80px 60px;
  background: #fff;
  overflow: hidden;
}

.vertical-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left;
  font-size: 14px;
  letter-spacing: 3px;
  color: #ff4d2e;
  font-weight: 600;
}

.travel-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.travel-content {
  flex: 1;
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: slideLeft;
}

.travel-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}

.travel-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.travel-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn {
  background: #ff4d2e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e63c1f;
}

.phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 500;
}

.travel-images {
  position: relative;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: slideRight;
  animation-delay: 0.3s;
}

.img-main {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.img-side {
  width: 250px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.badge {
  position: absolute;
  width: 120px;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.features-section {
  position: relative;
  background: linear-gradient(135deg, #eef1f2, #f8fafb);
  padding: 90px 80px;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 150px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  transform: translateY(-50%);
  z-index: 1;
}

.features-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.feature-box {
  flex: 1;
  padding: 30px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.feature-box:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
  animation-delay: 0.3s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.5s;
}

.feature-box:nth-child(4) {
  animation-delay: 0.7s;
}

.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.icon-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #f5d8d2, #fcd6ce);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: 0.4s ease;
}

.feature-box:hover .icon-circle {
  transform: rotate(10deg) scale(1.1);
}

.icon-circle i {
  font-size: 22px;
  color: #222;
}

.feature-box h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
}

.feature-box p {
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.camping-section {
  background: #f3f0ec;
  padding: 80px 60px;
}

.camping-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

/* Left Side */
.camping-left {
  flex: 1.2;
}

.camping-left h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #111;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box {
  background: #ebe6e1;
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.stat-box:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-box:nth-child(2) {
  animation-delay: 0.4s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.6s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.8s;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}



.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  color: #555;
  font-size: 14px;
}

/* Middle Content */
.camping-content {
  flex: 1;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.5s;
}

.camping-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.camping-content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

.learn-btn {
  display: inline-block;
  background: #ff4d2e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.learn-btn:hover {
  background: #e63c1f;
  transform: scale(1.08);
}

/* Right Image */
.camping-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.camping-image img {
  width: 100%;
  border-radius: 20px;
  transition: 0.6s ease;
  opacity: 0;
  transform: scale(1.1);
  animation: zoomIn 1.2s ease forwards;
  animation-delay: 0.8s;
}

.camping-image:hover img {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.icon-circle i {
  font-size: 24px;
  color: #ff4d2e;
  transition: 0.4s ease;
}

.stat-box:hover .icon-circle {
  background: #ff4d2e;
  transform: translateY(-5px);
}

.stat-box:hover .icon-circle i {
  color: #fff;
}

.activities-section {
  background: #f4f1ec;
  padding: 100px 80px;
  width: 100%;
}

.activities-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Images */
.activities-images {
  display: flex;
  gap: 25px;
  flex: 1;
}

.activities-images img {
  width: 100%;
  max-width: 300px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

.img-left {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.img-right {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

/* Right Content */
.activities-content {
  flex: 1;
  padding-left: 3em;
}

.activities-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #111;
}

/* Activities Grid */
.activities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  margin-bottom: 35px;
}

.activity-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.activity-item .icon {
  font-size: 22px;
  color: #8b5e3c;
  margin-top: 5px;
}

.activity-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.activity-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Button */
.explore-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ff4d2e;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.explore-btn:hover {
  background: #e63c1f;
  transform: translateY(-3px);
}

.testimonial-section {
  background: #f4ecd9;
  padding: 50px 80px;
  position: relative;
}

/* Paper texture effect */
.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  opacity: 0.4;
  pointer-events: none;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* Image Card */
.testimonial-image {
  position: relative;
  width: 450px;
}

.testimonial-image img {
  width: 100%;
  border: 15px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* Back rotated paper */
.image-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 20px;
  left: -20px;
  transform: rotate(-6deg);
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Content */
.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-user span {
  font-size: 14px;
  color: #777;
}

/* Navigation Buttons */
.testimonial-nav button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.testimonial-nav button:hover {
  background: #ff4d2e;
  color: #fff;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.6s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section */
.team-section {
  background: #f3f3f3;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.team-container {
  max-width: 1100px;
  margin: auto;
}

/* Top Label */
.team-label {
  color: #ff4d2d;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}

.team-section h2 {
  font-size: 32px;
  margin: 15px 0 10px;
  font-weight: 600;
}

.team-subtitle {
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
}

/* Grid */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Card */
.team-card {
  text-align: center;
}

.team-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.team-card img:hover {
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-card span {
  color: #777;
  font-size: 14px;
}

/* Button */
.team-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 28px;
  border: 2px solid #ff4d2d;
  border-radius: 30px;
  color: #ff4d2d;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.team-btn:hover {
  background: #ff4d2d;
  color: #fff;
}

.team-section {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s ease;
}

.team-section.show {
  opacity: 1;
  transform: scale(1);
}

.team-card {
  opacity: 0;
  transform: translateY(80px) rotateY(20deg);
  transition: all 0.9s cubic-bezier(.17, .67, .83, .67);
}

.team-section.show .team-card {
  opacity: 1;
  transform: translateY(0) rotateY(0);
}

/* Stagger */
.team-section.show .team-card:nth-child(1) {
  transition-delay: 0.5s;
}

.team-section.show .team-card:nth-child(2) {
  transition-delay: 0.7s;
}

.team-section.show .team-card:nth-child(3) {
  transition-delay: 0.9s;
}

.team-card img {
  position: relative;
  overflow: hidden;
}

.team-card img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: 0.8s;
}

.team-card:hover img::after {
  left: 100%;
}

.team-btn {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.team-section.show .team-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/* ===============================HOME 2==================================== */


.container-h {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.booking-section {
  text-align: center;
  background: #f3efe9;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #777;
  margin-bottom: 50px;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  text-align: left;
}

.step-icon {
  font-size: 28px;
  color: #7a4b1f;
  margin-bottom: 15px;
}

.step h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.step p {
  color: #777;
  font-size: 14px;
}

/* Initial State */
.booking-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

/* When Visible */
.booking-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Step Stagger Animation */
.step {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.booking-section.show .step {
  opacity: 1;
  transform: translateY(0);
}

/* Delay for each step */
.booking-section.show .step:nth-child(1) {
  transition-delay: 0.2s;
}

.booking-section.show .step:nth-child(2) {
  transition-delay: 0.4s;
}

.booking-section.show .step:nth-child(3) {
  transition-delay: 0.6s;
}

.booking-section.show .step:nth-child(4) {
  transition-delay: 0.8s;
}

/* ================= DESTINATION SECTION ================= */

.destination-section {
  background: #fff;
}

.destination-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.destination-header h2 {
  font-size: 40px;
  font-weight: 600;
}

.destination-header p {
  color: #777;
  font-size: 14px;
}

.view-more {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #333;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.destination-card {
  background: #000000;
  color: white;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
}

.destination-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.destination-card h4 {
  padding: 15px;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.destination-card:hover {
  transform: translateY(-8px);
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  text-align: left;
}

.step-icon {
  width: 55px;
  height: 55px;
  background: #7a4b1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.step:hover .step-icon {
  background: #000;
  transform: translateY(-5px);
}

/* Initial State */
.destination-section {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(8px);
  transition: all 0.9s ease;
}

/* When Visible */
.destination-section.show {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.destination-card {
  opacity: 0;
  transform: translateY(60px) rotateX(15deg);
  transition: all 0.8s cubic-bezier(.17, .67, .83, .67);
}

.destination-section.show .destination-card {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Stagger effect */
.destination-section.show .destination-card:nth-child(1) {
  transition-delay: 0.2s;
}

.destination-section.show .destination-card:nth-child(2) {
  transition-delay: 0.4s;
}

.destination-section.show .destination-card:nth-child(3) {
  transition-delay: 0.6s;
}

.destination-section.show .destination-card:nth-child(4) {
  transition-delay: 0.8s;
}

.destination-grid {
  perspective: 1000px;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Section Background with Wave */
.welcome-section {
  background: #f4f4f4;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Top Wave */
.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: white;
  border-bottom-left-radius: 50% 40%;
  border-bottom-right-radius: 50% 40%;
}

/* Container */
.welcome-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Left Text */
.welcome-text {
  flex: 1;
}

.welcome-text h1 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
}

.welcome-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.welcome-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ff4d2d;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.welcome-btn:hover {
  background: #e63e20;
}

/* Right Image Shapes */
.welcome-images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

/* Common Shape */
.shape {
  overflow: hidden;
}

.shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Different Half Circle Sizes */

.shape-small {
  width: 90px;
  height: 180px;
  border-radius: 100px 0 0 100px;
}

.shape-big {
  width: 180px;
  height: 260px;
  border-radius: 130px 0 0 130px;
}

.shape-medium {
  width: 150px;
  height: 240px;
  border-radius: 130px 0 0 130px;
}

.shape-large {
  width: 180px;
  height: 260px;
  border-radius: 0 130px 130px 0;
}

/* Initial state */
.welcome-section {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

/* When visible */
.welcome-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Text animation */
.welcome-text {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s ease;
}

.welcome-section.show .welcome-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

/* Image shapes animation */
.shape {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.welcome-section.show .shape {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.welcome-section.show .shape:nth-child(1) {
  transition-delay: 0.4s;
}

.welcome-section.show .shape:nth-child(2) {
  transition-delay: 0.6s;
}

.welcome-section.show .shape:nth-child(3) {
  transition-delay: 0.8s;
}

.welcome-section.show .shape:nth-child(4) {
  transition-delay: 1s;
}


/* ===============================about page======================================== */

.mv-section {
  background: url("../img/16.webp") center/cover no-repeat;
  padding: 40px 20px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.mv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.mv-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  z-index: 2;
}

.mv-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 50px;
}

.mv-title span {
  color: #e63c1f;
}

/* Card */
.mv-card {
  background: #e9e9e9;
  border-radius: 60px;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

/* Left Section */
.mv-left {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 200px;
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: #e63c1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000;
}

.mv-left h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

/* Divider */
.mv-divider {
  width: 4px;
  height: 60px;
  background: #e63c1f;
  margin: 0 30px;
}

/* Content */
.mv-content {
  flex: 1;
  color: #444;
  font-size: 14px;
}

/* Number */
.mv-number {
  width: 70px;
  height: 70px;
  background: #e63c1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
}

@media(max-width:768px) {
  .mv-card {
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
    gap: 20px;
  }

  .mv-divider {
    display: none;
  }

  .mv-left {
    flex-direction: column;
  }
}

/* Animation Initial State */
.mv-card {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

.mv-title {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
}

.mv-section.show .mv-title {
  opacity: 1;
  transform: translateY(0);
}

.mv-section.show .mv-card {
  opacity: 1;
  transform: translateY(0);
}

/* Delay effect */
.mv-section.show .mv-card:nth-child(2) {
  transition-delay: 0.3s;
}

.mv-section.show .mv-card:nth-child(3) {
  transition-delay: 0.6s;
}




.why-section-ab {
  background: #efefef;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.container-ab {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.why-title-ab {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Top Features */
.why-features-ab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.feature-box-ab {
  text-align: left;
}

.feature-icon-ab {
  width: 55px;
  height: 55px;
  background: #fde8e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.feature-icon-ab i {
  font-size: 22px;
  color: #e63c1f;
}

/* Hover Effect */
.feature-box-ab:hover .feature-icon-ab {
  background: #e63c1f;
  transform: translateY(-5px);
}

.feature-box-ab:hover .feature-icon-ab i {
  color: #fff;
}


.feature-box-ab h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box-ab p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Story Section */
.story-section-ab {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.story-label-ab {
  color: #e63c1f;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.story-content-ab h3 {
  font-size: 26px;
  margin: 15px 0;
}

.story-content-ab p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.story-btn-ab {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 1.5px solid #e63c1f;
  border-radius: 25px;
  color: #e63c1f;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.story-btn-ab:hover {
  background: #e63c1f;
  color: #fff;
}

/* Images */
.story-images-ab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-images-ab img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 50px;
}

/* ===== INITIAL STATE ===== */

.why-title-ab,
.feature-box-ab,
.story-content-ab,
.story-images-ab img {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  filter: blur(8px);
  transition: all 0.8s cubic-bezier(.17, .67, .83, .67);
}

/* ===== WHEN SHOW ===== */

.why-section-ab.show .why-title-ab {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger feature animation */
.why-section-ab.show .feature-box-ab {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.why-section-ab.show .feature-box-ab:nth-child(1) {
  transition-delay: 0.2s;
}

.why-section-ab.show .feature-box-ab:nth-child(2) {
  transition-delay: 0.4s;
}

.why-section-ab.show .feature-box-ab:nth-child(3) {
  transition-delay: 0.6s;
}

.why-section-ab.show .feature-box-ab:nth-child(4) {
  transition-delay: 0.8s;
}

/* Story Content */
.why-section-ab.show .story-content-ab {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition-delay: 0.3s;
}

/* Images Reveal */
.story-images-ab img {
  transform: translateX(80px) scale(0.9);
}

.why-section-ab.show .story-images-ab img {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.why-section-ab.show .story-images-ab img:nth-child(1) {
  transition-delay: 0.4s;
}

.why-section-ab.show .story-images-ab img:nth-child(2) {
  transition-delay: 0.6s;
}

.feature-icon-ab {
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.adventure-footer {
  background: #f8f9fa;
  color: #334155;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about h2 {
  color: #ff4d2e;
  margin-bottom: 15px;
  font-size: 24px;
}

.footer-about p {
  line-height: 1.8;
}

.footer-links h3,
.footer-newsletter h3,
.footer-contact h3 {
  color: #ff4d2e;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #475569;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ff4d2e;
  padding-left: 5px;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #ff4d2e;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #e63c1f;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact .social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #334155;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-contact .social-icons a:hover {
  background: #ff4d2e;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
}

/* Responsive */
@media(max-width:768px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .footer-newsletter form {
    align-items: center;
  }
}

@media(max-width:480px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-newsletter form {
    align-items: center;
  }

  .footer-contact .social-icons {
    justify-content: center;
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/img/40.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #ff4d2e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
}



.btn-submit {
  background: #ff4d2e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #e63c1f;
  color: #fff;
  transform: translateY(-2px);
}

.form-control:focus {
  border-color: #ff4d2e;
  box-shadow: 0 0 0 0.25rem rgba(255, 77, 46, 0.25);
}

.map-section {
  width: 100%;
}

.map-section iframe {
  display: block;
  /* Removes bottom space/gap */
}

/* ================== DESTINATIONS PAGE ================== */

/* Hero Section */
.dest-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/40.jpg');
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  margin-bottom: 0;
}

.dest-hero .sub-title {
  display: inline-block;
  background: #ff4d2e;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.dest-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

/* Search Filter */
.search-filter-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.search-filter-box .form-control,
.search-filter-box .form-select {
  border: 1px solid #eee;
  padding: 12px;
}

.search-filter-box .input-group-text {
  background: #f8f9fa;
  border: 1px solid #eee;
  color: #ff4d2e;
}

.btn-search {
  background: #ff4d2e;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-search:hover {
  background: #e63c1f;
  color: #fff;
}

/* Destinations Grid */
.destinations-grid-section {
  padding: 100px 0;
  background: #fff;
}

.section-tag {
  color: #ff4d2e;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.dest-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dest-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.dest-card:hover .dest-img img {
  transform: scale(1.1);
}

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4d2e;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.dest-content {
  padding: 25px;
}

.location {
  font-size: 14px;
  color: #777;
}

.rating {
  color: #ffb400;
  font-size: 14px;
  font-weight: 600;
}

.dest-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.dest-content h3 a {
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.dest-content h3 a:hover {
  color: #ff4d2e;
}

.dest-content p {
  color: #777;
  margin-bottom: 20px;
}

.dest-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.btn-link {
  text-decoration: none;
  color: #ff4d2e;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-link:hover {
  letter-spacing: 1px;
}

/* Stats Section */
.stats-section-dest {
  background: #832b1b;
  padding: 40px 0;
  color: #fff;
  position: relative;
}

.stat-item-dest {
  padding: 20px;
}

.stat-item-dest .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-item-dest h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-item-dest p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Video Feature Section */
.video-feature-section {
  position: relative;
  background: url('../img/16.webp') center/cover fixed;
  padding: 150px 0;
  text-align: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.play-btn-wrapper {
  position: relative;
  display: inline-block;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: #fff;
  color: #ff4d2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Travel Tips Section */
.travel-tips-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.tip-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
  border-bottom: 3px solid transparent;
}

.tip-card:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid #ff4d2e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tip-icon {
  width: 70px;
  height: 70px;
  background: #fff5f3;
  color: #ff4d2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: 0.3s;
}

.tip-card:hover .tip-icon {
  background: #ff4d2e;
  color: #fff;
}

.tip-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.tip-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .dest-hero {
    padding: 120px 0 80px;
  }

  .dest-hero h1 {
    font-size: 2.5rem;
  }

  .stat-item-dest h3 {
    font-size: 2rem;
  }
}

/* ================== FAQ PAGE ================== */

/* Hero Section */
.faq-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/40.jpg');
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  margin-bottom: 0;
}

.faq-hero .sub-title {
  display: inline-block;
  background: #ff4d2e;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.faq-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px 25px;
  background: #fff;
  color: #111;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff5f3;
  color: #ff4d2e;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff4d2e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px 30px;
  color: #666;
  line-height: 1.7;
}

/* CTA Section */
/* Community Join Section */
.community-join-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.community-wrapper {
  background: #0f172a;
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.community-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 77, 46, 0.1);
  border-radius: 50%;
}

.community-content {
  color: #fff;
  position: relative;
  z-index: 2;
}

.badge-custom {
  background: #ff4d2e;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.community-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.community-content p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.subscribe-form-unique .input-group {
  background: #fff;
  border-radius: 50px;
  padding: 5px;
  overflow: hidden;
}

.subscribe-form-unique .input-group-text {
  background: transparent;
  border: none;
  color: #999;
  padding-left: 20px;
}

.subscribe-form-unique .form-control {
  border: none;
  padding: 15px;
  box-shadow: none;
}

.btn-join {
  background: #ff4d2e;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-join:hover {
  background: #e63c1f;
  color: #fff;
}

.community-perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.perk-item {
  font-size: 14px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.perk-item i {
  color: #ff4d2e;
}

.community-images {
  position: relative;
  height: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-1 {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transform: rotate(-10deg) translateX(-20px);
  border: 5px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.img-2 {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transform: rotate(10deg) translateX(20px);
  border: 5px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  margin-left: -50px;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: #ff4d2e;
}

.floating-card span {
  font-weight: 600;
  color: #111;
  font-size: 14px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .community-wrapper {
    padding: 40px;
  }


}



/* ================== SERVICES PAGE ================== */

/* 1. Parallax Hero */
.service-hero {
  background: fixed linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/40.jpg');
  background-size: cover;
  background-position: center;
  padding: 200px 0 120px;
  margin-bottom: 0;
}

.service-hero .sub-title {
  display: inline-block;
  background: #ff4d2e;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.service-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

/* 2. Glassmorphism Service Cards */
.glass-services-section {
  padding: 100px 0;
  background: #f0f2f5;
  background-image: radial-gradient(#ff4d2e 1px, transparent 1px);
  background-size: 20px 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 30px;
  border-radius: 20px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.glass-card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.glass-icon {
  font-size: 40px;
  color: #ff4d2e;
  margin-bottom: 20px;
}

.glass-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.glass-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.read-more {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.read-more:hover {
  color: #ff4d2e;
  letter-spacing: 1px;
}

/* 3. Interactive Visual Timeline */
.timeline-section {
  padding: 100px 0;
  background: #fff;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #eee;
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.step-number {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 4px solid #ff4d2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ff4d2e;
  margin: 0 auto 30px;
  transition: 0.3s;
}

.timeline-item:hover .step-number {
  background: #ff4d2e;
  color: #fff;
  transform: scale(1.1);
}

.timeline-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.timeline-content p {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 40px;
  }

  .timeline::before {
    width: 4px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .step-number {
    margin-bottom: 20px;
  }
}

/* 4. Split Feature Section */
.split-feature-section {
  background: #f9fafb;
}

.feature-img-wrapper {
  height: 100%;
  min-height: 500px;
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content-wrapper {
  padding: 80px 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-box-small {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature-box-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box-small i {
  font-size: 24px;
  color: #ff4d2e;
  margin-bottom: 15px;
}

.feature-box-small h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-box-small p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-content-wrapper {
    padding: 40px 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* 5. Unique CTA Strip */
.cta-strip-section {
  background: #0f172a;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.cta-text p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin: 0;
}

.btn-white-pulse {
  background: #fff;
  color: #ff4d2e;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  animation: pulse-white 2s infinite;
}

.btn-white-pulse:hover {
  background: #f8f9fa;
  color: #e63c1f;
  transform: scale(1.05);
}

@keyframes pulse-white {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 768px) {
  .cta-strip-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

/* ================== ADMIN DASHBOARD PAGE ================== */

.admin-body {
  background: #f1f5f9;
  min-height: 100vh;
  display: flex;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background: #0f172a;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
  overflow-y: auto;
  color: #fff;
}

.sidebar-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo {
  height: 50px;
  width: auto;
}

.sidebar-menu {
  list-style: none;
  padding: 20px 0;
}

.sidebar-menu li {
  margin-bottom: 5px;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-left: 3px solid #ff4d2e;
}

.sidebar-menu i {
  width: 25px;
  margin-right: 10px;
  font-size: 16px;
}

.logout-item {
  margin-top: 50px;
}

/* Main Content Area */
.main-content {
  margin-left: 260px;
  width: calc(100% - 260px);
  transition: 0.3s;
}

/* Admin Header */
.admin-header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 900;
}

.toggle-sidebar-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-right: 20px;
  display: none;
  /* Hidden on desktop */
}

.header-left {
  display: flex;
  align-items: center;
}

.search-box {
  position: relative;
  background: #f1f5f9;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  width: 300px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  padding-left: 10px;
  width: 100%;
}

.search-box i {
  color: #64748b;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notification-icon {
  position: relative;
  font-size: 20px;
  cursor: pointer;
  color: #64748b;
}

.badge-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #ff4d2e;
  border-radius: 50%;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.user-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h4 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.user-info p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* Dashboard Container */
.dashboard-container {
  padding: 30px;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1e293b;
}

/* Stats Cards */
.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.primary-card .stat-icon {
  background: #e0f2fe;
  color: #0284c7;
}

.success-card .stat-icon {
  background: #dcfce7;
  color: #16a34a;
}

.warning-card .stat-icon {
  background: #fef9c3;
  color: #ca8a04;
}

.danger-card .stat-icon {
  background: #fee2e2;
  color: #dc2626;
}

.stat-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.stat-info p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
}

/* Charts & Widgets */
.chart-container,
.recent-users-card,
.table-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);

}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-header-flex h3,
.recent-users-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Simple Bar Chart CSS */
.simple-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 250px;
  padding-top: 20px;
  gap: 10px;
}

.bar {
  width: 100%;
  background: #e2e8f0;
  border-radius: 5px;
  position: relative;
  transition: 0.3s;
}

.bar:hover,
.bar.active {
  background: #ff4d2e;
}

.bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #64748b;
}

/* User List */
.user-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.user-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-list img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details {
  flex: 1;
}

.user-details h5 {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.user-details p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.btn-icon {
  border: none;
  background: #f1f5f9;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: 0.3s;
}

.btn-icon:hover {
  background: #ff4d2e;
  color: #fff;
}

.view-all-btn {
  display: block;
  text-align: center;
  color: #ff4d2e;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Table */
.custom-table th {
  background: #f8fafc;
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
  border: none;
  padding: 15px;
}

.custom-table td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #334155;
}

.avatar-sm {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.btn-action {
  background: transparent;
  border: none;
  color: #94a3b8;
}

/* Admin Responsive */
@media (max-width: 991px) {
  .sidebar {
    left: -260px;
  }

  .sidebar.active {
    left: 0;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .toggle-sidebar-btn {
    display: block;
  }

  .search-box {
    display: flex;
    /* Restore search box */
    width: 200px;
    margin-right: 15px;
  }

  .search-box input {
    font-size: 13px;
    padding: 6px 10px 6px 35px;
  }
}

/* ================== MISSING DASHBOARD WIDGET STYLES ================== */
.traffic-card,
.support-card,
.todo-card,
.system-health-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  height: 100%;
  margin-bottom: 20px;
}

.traffic-item {
  margin-bottom: 20px;
}

.traffic-item:last-child {
  margin-bottom: 0;
}

.todo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.todo-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.todo-list li:last-child {
  border-bottom: none;
}

.health-metrics .metric-item {
  margin-bottom: 20px;
}


.health-metrics .metric-item:last-child {
  margin-bottom: 0;
}

/* ================== ANIMATIONS ================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ================== LOGIN / AUTH PAGE ================== */
.login-body {
  background: #faa7a76e;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  margin: 0;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.login-container .container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  min-height: 480px;
}

.form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

.sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}

.container.right-panel-active .sign-in-container {
  transform: translateX(100%);
}

.sign-up-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}

.container.right-panel-active .sign-up-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}

@keyframes show {

  0%,
  49.99% {
    opacity: 0;
    z-index: 1;
  }

  50%,
  100% {
    opacity: 1;
    z-index: 5;
  }
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}

.container.right-panel-active .overlay-container {
  transform: translateX(-100%);
}

.overlay {
  background: #ff4b2b;
  background: -webkit-linear-gradient(to right, #ff4d2e, #ff416c);
  background: linear-gradient(to right, #ff4d2e, #ff416c);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #FFFFFF;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
  transform: translateX(50%);
}

.overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.overlay-left {
  transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
  transform: translateX(0);
}

.overlay-right {
  right: 0;
  transform: translateX(0);
}

.container.right-panel-active .overlay-right {
  transform: translateX(20%);
}

.social-container {
  margin: 20px 0;
}

.social-container a {
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.social-container a:hover {
  background: #ff4d2e;
  border-color: #ff4d2e;
  color: #fff;
}

.form-container form {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}

.form-container input {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
  border-radius: 5px;
  outline: none;
}

.btn-auth {
  border-radius: 20px;
  border: 1px solid #ff4d2e;
  background-color: #ff4d2e;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  margin-top: 20px;
  cursor: pointer;
}

.btn-auth:active {
  transform: scale(0.95);
}

.btn-auth:focus {
  outline: none;
}

.ghost {
  background-color: transparent;
  border-color: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
  margin-top: 20px;
}

.ghost:active {
  transform: scale(0.95);
}

.form-container h1 {
  font-weight: bold;
  margin: 0;
}

.form-container span {
  font-size: 12px;
  margin-bottom: 10px;
}

.forgot-pass {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}

/* Mobile Toggle Text */
.mobile-toggle-text {
  display: none;
  margin-top: 20px;
  font-size: 14px;
}

.mobile-toggle-text a {
  color: #ff4d2e;
  font-weight: 600;
  text-decoration: none;
}

.back-to-home {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.back-to-home a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.back-to-home a:hover {
  color: #ff4d2e;
}

/* Responsive Login */
@media (max-width: 768px) {
  .login-container .container {
    min-height: 500px;
    width: 90%;
    max-width: 400px;
  }

  .sign-in-container,
  .sign-up-container {
    width: 100%;
  }

  .sign-up-container {
    opacity: 0;
    z-index: 1;
  }

  .container.right-panel-active .sign-in-container {
    transform: translateX(0);
  }

  .container.right-panel-active .sign-up-container {
    transform: translateX(0);
  }

  .overlay-container {
    display: none;
  }

  .mobile-toggle-text {
    display: block;
  }
}

/* ==========================================================================
   THEME AND LAYOUT TOGGLES
   ========================================================================== */

/* Toggle Buttons Container */
.theme-toggles {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}

/* Base Button Style */
.toggle-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .theme-toggles {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* ==========================================================================
   DARK THEME OVERRIDES
   ========================================================================== */

[data-theme='dark'] body {
  background-color: #121212;
  color: #e0e0e0;
}

[data-theme='dark'] .navbar {
  background: #1a1a1a;
  border-bottom: 1px solid #333;
}

[data-theme='dark'] .travel-section,
[data-theme='dark'] .camping-section,
[data-theme='dark'] .features-section,
[data-theme='dark'] .activities-section,
[data-theme='dark'] .team-section,
[data-theme='dark'] .testimonial-section {
  background: #1e1e1e !important;
  color: #e0e0e0;
}

[data-theme='dark'] .travel-content h2,
[data-theme='dark'] .camping-left h2,
[data-theme='dark'] .team-section h2,
[data-theme='dark'] .activities-content h2,
[data-theme='dark'] .feature-box h3,
[data-theme='dark'] .stat-box h3,
[data-theme='dark'] .testimonial-user h4 {
  color: #ffffff;
}

[data-theme='dark'] .travel-content p,
[data-theme='dark'] .camping-content p,
[data-theme='dark'] .team-subtitle,
[data-theme='dark'] .feature-box p,
[data-theme='dark'] .stat-box p,
[data-theme='dark'] .activity-item p {
  color: #b0b0b0;
}

[data-theme='dark'] .feature-box,
[data-theme='dark'] .stat-box,
[data-theme='dark'] .team-card {
  background: #2d2d2d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

[data-theme='dark'] .feature-box:hover,
[data-theme='dark'] .stat-box:hover,
[data-theme='dark'] .team-card:hover {
  background: #333;
}

[data-theme='dark'] .icon-circle {
  background: #3d3d3d;
}

[data-theme='dark'] .icon-circle i {
  color: #ff4d2e;
}

[data-theme='dark'] .footer-wrapper {
  background: #1a1a1a;
  color: #e0e0e0;
}

/* Dashboard Dark Mode */
[data-theme='dark'] .sidebar {
  background: #1a1a1a;
  border-right: 1px solid #333;
}

[data-theme='dark'] .sidebar-menu li a {
  color: #b0b0b0;
}

[data-theme='dark'] .sidebar-menu li a:hover,
[data-theme='dark'] .sidebar-menu li a.active {
  background: #2d2d2d;
  color: #fff;
}

[data-theme='dark'] .admin-header {
  background: #1a1a1a;
  border-bottom: 1px solid #333;
}

[data-theme='dark'] .search-box input {
  background: #2d2d2d;
  color: #fff;
  border: 1px solid #444;
}

[data-theme='dark'] .card,
[data-theme='dark'] .stat-card,
[data-theme='dark'] .table-card,
[data-theme='dark'] .recent-users-card,
[data-theme='dark'] .traffic-card,
[data-theme='dark'] .support-card,
[data-theme='dark'] .todo-card,
[data-theme='dark'] .system-health-card {
  background: #1e1e1e !important;
  border: 1px solid #333;
  color: #e0e0e0;
}

[data-theme='dark'] .table {
  color: #e0e0e0;
}

[data-theme='dark'] .table th {
  background: #2d2d2d;
  color: #fff;
  border-color: #444;
}

[data-theme='dark'] .table td {
  border-color: #444;
}

[data-theme='dark'] .page-title {
  color: #fff;
}

/* ==========================================================================
   RTL LAYOUT OVERRIDES
   ========================================================================== */

html[dir='rtl'] {
  direction: rtl;
  text-align: right;
}

html[dir='rtl'] .navbar {
  flex-direction: row-reverse;
}

html[dir='rtl'] .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

html[dir='rtl'] .menu,
html[dir='rtl'] .navbar-nav {
  padding-right: 0;
  padding-left: 0;
}

html[dir='rtl'] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}

html[dir='rtl'] .hero-content {
  padding-left: 0;
  padding-right: 5em;
  text-align: right;
}

html[dir='rtl'] .vertical-text {
  left: auto;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right;
}

html[dir='rtl'] .travel-container {
  flex-direction: row-reverse;
}

html[dir='rtl'] .camping-container,
html[dir='rtl'] .activities-container {
  flex-direction: row-reverse;
}

html[dir='rtl'] .activities-content {
  padding-left: 0;
  padding-right: 3em;
}

html[dir='rtl'] .sidebar {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid #e5e7eb;
}

html[dir='rtl'] .main-content {
  margin-left: 0;
  margin-right: 260px;
  /* Sidebar width from original CSS is implied around 260px, adjust if needed */
}

/* Sidebar toggle logic for RTL needs JS adjustment or CSS conditional */
html[dir='rtl'] .main-content.shifted {
  margin-right: 0;
}

/* Fix icons in RTL */
html[dir='rtl'] .fa-chevron-right::before {
  content: '\f053';
  /* Chevron Left */
}

html[dir='rtl'] .fa-chevron-left::before {
  content: '\f054';
  /* Chevron Right */
}

/* Dashboard Header RTL */
html[dir='rtl'] .admin-header {
  flex-direction: row-reverse;
}

html[dir='rtl'] .header-left,
html[dir='rtl'] .header-right {
  flex-direction: row-reverse;
}

html[dir='rtl'] .search-box i {
  left: auto;
  right: 15px;
}

html[dir='rtl'] .search-box input {
  padding-left: 15px;
  padding-right: 40px;
}

html[dir='rtl'] .theme-toggles {
  margin-left: 0;
  margin-right: 15px;
}

/* --- 1024px Adjustments --- */
@media (max-width: 1024px) {
  .navbar-nav {
    gap: 15px !important;
  }
}

/* --- 768px Adjustments --- */
@media (max-width: 768px) {
  .search-box {
    display: flex !important;
    width: 180px !important;
  }

  .user-info {
    display: none !important;
  }
}

/* --- 360px Adjustments --- */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 10px !important;
  }

  .navbar-brand img {
    height: 30px !important;
  }

  .hero-content {
    padding: 1em 5px !important;
  }

  .hero h1 {
    font-size: 20px !important;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hero-btns .btn {
    width: 100% !important;
    margin: 0 !important;
  }

  .travel-container,
  .camping-container,
  .activities-container,
  .welcome-container {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 30px 15px !important;
  }

  .welcome-images {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .welcome-images .shape {
    width: 50px !important;
    height: 90px !important;
  }

  .features-grid-ab {
    grid-template-columns: 1fr !important;
  }

  .story-section-ab {
    display: flex !important;
    flex-direction: column !important;
  }

  .back-to-home {
    top: 5px !important;
    left: 5px !important;
  }

  .back-to-home a {
    font-size: 12px !important;
  }

  /* --- Internal Page Fixes (360px) --- */

  /* Services Timeline */
  .timeline {
    flex-direction: column !important;
    gap: 30px !important;
    margin-top: 30px !important;
  }

  .timeline::before {
    width: 4px !important;
    height: 100% !important;
    left: 20px !important;
    top: 0 !important;
    transform: none !important;
  }

  .timeline-item {
    justify-content: flex-start !important;
    padding-left: 50px !important;
    text-align: left !important;
    margin-bottom: 20px !important;
  }

  .step-number {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.2rem !important;
    margin: 0 !important;
    position: absolute !important;
    left: -8px !important;
    top: 0 !important;
  }

  .timeline-content {
    margin-top: 5px !important;
  }

  /* Destination Cards */
  .dest-card {
    margin-bottom: 20px !important;
  }

  .dest-img {
    height: 200px !important;
  }

  .stat-item-dest h3 {
    font-size: 1.8rem !important;
  }

  /* Community & FAQ */
  .community-wrapper {
    padding: 30px 15px !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .community-content h2 {
    font-size: 1.8rem !important;
  }

  .subscribe-form-unique .input-group {
    flex-direction: column !important;
    gap: 10px !important;
    background: transparent !important;
  }

  .subscribe-form-unique .form-control {
    border-radius: 50px !important;
    text-align: center !important;
  }

  .community-images {
    margin-top: 40px !important;
    min-height: 250px !important;
  }

  .community-images .img-1,
  .community-images .img-2 {
    width: 150px !important;
    height: 200px !important;
  }

  /* Contact Form */
  .contact-section {
    padding: 50px 0 !important;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 20px !important;
  }

  .map-section iframe {
    height: 250px !important;
  }

  /* Global Footer Stacking */
  .footer-wrapper {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 40px !important;
    padding: 40px 20px !important;
  }

  .footer-about,
  .footer-links,
  .footer-newsletter,
  .footer-contact {
    width: 100% !important;
  }

  .footer-newsletter form {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .footer-newsletter input {
    width: 100% !important;
  }

  .footer-contact .social-icons {
    justify-content: center !important;
  }
}

/* --- Extra Polish for Tablets (768px to 991px) --- */
@media (min-width: 481px) and (max-width: 991px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }

  .hero h1 {
    font-size: 2.5rem !important;
  }

  .travel-container,
  .camping-container,
  .activities-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}