@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --dark-green: #112a34;
  --green-color: #3538CD;
  --white-color: #ffffff;
  --bg-light: #ffffff;
  --bg-subtle: #f8f9fa;
  --text-gray: #444444;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-gray);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-green);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--green-color);
  color: var(--white-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: scale(0.97);
}

.btn:active {
  transform: scale(0.93);
}

/* Skeleton Loader */
@keyframes skeleton-loading {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeleton-loader {
  animation: skeleton-loading 1.2s infinite linear;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200px 100%;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 25px;
  flex: 2;
  justify-content: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background-color var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 8px 24px;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav-cta:hover {
  background: var(--white-color);
  color: var(--dark-green);
}

/* Scrolled Header State */
header.scrolled {
  background-color: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header.scrolled .logo,
header.scrolled .nav-links a,
header.scrolled .hamburger {
  color: var(--dark-green);
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--dark-green);
}

header.scrolled .nav-cta {
  border-color: var(--dark-green);
  color: var(--dark-green);
  background: transparent;
}

header.scrolled .nav-cta:hover {
  background: var(--dark-green);
  color: var(--white-color);
}

.hamburger {
  display: none;
  font-size: 24px;
  color: var(--white-color);
  cursor: pointer;
  margin-left: 20px;
}

/* GSAP Initial States */
.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  background: #2a3439 url('https://images.unsplash.com/photo-1532274402911-5a369e4c4bb5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}



.hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
  color: var(--white-color);
  width: 100%;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white-color);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Home Hero Overrides */
.hero-home .container {
  text-align: left;
}

.hero-home h1 {
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-home p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  max-width: 600px;
}

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

.btn-white {
  background: var(--white-color);
  color: var(--dark-green);
  font-weight: 600;
}

.btn-white:hover {
  transform: scale(0.97);
}
.btn-white:active {
  transform: scale(0.93);
}

.btn-outline {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  font-weight: 600;
}

.btn-outline:hover {
  transform: scale(0.97);
}
.btn-outline:active {
  transform: scale(0.93);
}

/* Search Bar */
.search-bar {
  background: var(--white-color);
  padding: 10px;
  border-radius: 50px;
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}

/* Sections General */
section {
  padding: 80px 0;
}

.section-title {
  text-align: left;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0;
}

/* Info Boxes / Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tip-box {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 1rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition);
}

.tip-box:hover {
  transform: translateY(-10px);
}

.tip-box i {
  font-size: 3rem;
  color: var(--green-color);
  margin-bottom: 20px;
}

.tip-box h3 {
  margin-bottom: 15px;
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.package-card {
  background: var(--white-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.package-image-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.package-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.package-card:hover .package-image-container img {
  transform: scale(1.05);
}

.package-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location {
  color: var(--green-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.package-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: auto;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-green);
}

.rating {
  color: #f39c12;
  font-size: 0.9rem;
}

.package-footer {
  padding: 0 25px 25px;
}

.package-footer .btn {
  width: 100%;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white-color);
  color: var(--dark-green);
  border: 1px solid #e0e0e0;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: #3538CD;
  color: var(--white-color);
  border-color: #3538CD;
}

/* Contact & Booking Layouts */
.form-section {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white-color);
  padding: 50px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--dark-green);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--green-color);
}

.summary-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid var(--green-color);
}

.summary-box p {
  margin-bottom: 10px;
}

.summary-box p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--dark-green);
  color: var(--white-color);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p {
  color: #bbbbbb;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #bbbbbb;
}

.footer-links a:hover {
  color: var(--white-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  transition: background-color var(--transition), transform var(--transition);
}

.social-icons a:hover {
  background: var(--green-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbbbbb;
  font-size: 0.9rem;
}

/* New Tour Packages Layout */
.all-inclusive-packages {
  padding: 80px 0;
}

.tour-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--white-color);
  border-radius: 12px;
  border: 1px solid #eaeaea;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.tour-image {
  height: 180px;
  width: 100%;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-rating {
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-rating .stars {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.tour-title {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #222;
}

.tour-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.tour-discount {
  display: inline-block;
  background: #059669;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.tour-price-row {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.tour-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.tour-per-person {
  font-size: 0.85rem;
  color: #888;
}

.tour-dates {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.4;
}

.tour-itinerary {
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #eaeaea;
  padding-top: 15px;
  margin-top: auto;
}

/* See More Card */
.see-more-card {
  background: linear-gradient(to bottom, #ffffff, #e0f2fe);
  position: relative;
  text-align: center;
}

.see-more-content {
  padding: 40px 20px;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.see-more-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.see-more-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.see-more-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.btn-outline-dark {
  display: inline-block;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

.see-more-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  z-index: 1;
}

.see-more-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* Featured Destinations Layout */
.large-dest-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 30px;
}

.banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.1) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 30px 40px;
  max-width: 650px;
}

.banner-meta {
  font-size: 0.85rem;
  color: #ddd;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-meta .tour-rating { color: #059669; font-weight: bold; }

.banner-subtitle {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #ddd;
}

.banner-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 5px;
}

.banner-locations {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 15px;
}

.banner-info {
  margin-bottom: 15px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.5;
}

.info-row i {
  margin-top: 3px;
  color: #999;
}

.btn-purple {
  background: #3538CD;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-purple:hover {
  opacity: 0.9;
  color: #fff;
  transform: scale(0.97);
}
.btn-purple:active {
  transform: scale(0.93);
}

.banner-tc {
  font-size: 0.7rem;
  color: #888;
  margin-top: 10px;
}

.banner-nav {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* Bottom 3 Cards */
.dest-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  background: #fff;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
}

.dest-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.dest-card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

.dest-card-content {
  position: relative;
  z-index: 3;
  padding: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.guests-count {
  font-size: 0.8rem;
  color: #ddd;
  margin-bottom: 5px;
}

.dest-card-content h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5px;
}

.tours-count {
  font-size: 0.8rem;
  color: #bbb;
}

.btn-white-small {
  background: #fff;
  color: #222;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  align-self: flex-start;
  transition: background var(--transition);
}
.btn-white-small:hover {
  background: #f0f0f0;
}

.mt-auto {
  margin-top: auto;
}

/* See More Destination Card */
.see-more-dest {
  padding: 30px;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid #ddd;
}
.see-more-dest .see-more-icon {
  width: 40px; height: 40px;
  font-size: 1.5rem;
  background: #f0f8ff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: none;
}
.see-more-dest h3 {
  color: #222;
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.see-more-dest p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Why Travel With Us Section */
.why-travel-us {
  background-color: #f5f8ff;
  padding: 100px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(53, 56, 205, 0.06);
}

.why-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.why-card:hover .why-icon-wrap {
  background-color: #c7d2fe;
}

.why-icon-wrap i {
  font-size: 1.8rem;
  color: #3538CD;
}

.why-card h3 {
  font-size: 1.35rem;
  color: #112a34;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card p {
  color: #546e7a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 11px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-outline-white:hover {
  transform: scale(0.97);
}
.btn-outline-white:active {
  transform: scale(0.93);
}

/* Handpicked Collections Section */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.collection-card {
  display: flex;
  flex-direction: column;
}

.collection-image {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.collection-card:hover .collection-image img {
  transform: scale(1.05);
}

.collection-rating {
  font-size: 0.85rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.collection-rating .stars {
  letter-spacing: 2px;
}

.collection-title {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 8px;
}

.collection-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 25px;
}

.collection-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.collection-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.collection-price .price-label {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.3;
}

.collection-price .price-amount {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.collection-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  color: #555;
  text-decoration: none;
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-10px);
}

.collection-card:hover .collection-arrow {
  opacity: 1;
  transform: translateX(0);
}

.collection-arrow:hover {
  background-color: #222;
  border-color: #222;
  color: #fff;
}

/* Exclusive Offers Section */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.offer-card {
  display: flex;
  gap: 30px;
  align-items: center;
}

.offer-image {
  flex: 0 0 45%;
  height: 250px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logoipsum-badge {
  position: absolute;
  bottom: 8px;
  left: 20px;
  background: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.offer-content {
  flex: 1;
}

.offer-title {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.offer-desc {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 25px;
  line-height: 1.5;
}

.offer-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.offer-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.tc-text {
  font-size: 0.75rem;
  color: #aaa;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: -1px;
  transition: all 0.3s ease;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2b2b35;
  color: #fff;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2b2b35;
  transition: all 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px 0 72px;
}

.faq-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 25px;
}

/* Active State */
.faq-item.active {
  background-color: #f8f9fb;
  border-top: 2px solid #3538CD;
  border-bottom-color: transparent;
  z-index: 1;
  position: relative;
}

.faq-item.active .faq-icon {
  background-color: #3538CD;
}

.faq-item.active .faq-question {
  color: #3538CD;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

/* New Footer Styles */
.footer-links a:hover {
  color: #fff !important;
}

.social-links a:hover {
  background: #3538CD !important;
}

.back-to-top:hover {
  transform: translateY(-3px) !important;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

/* Slider Button Hover */
.slider-btn:hover {
  background: #fff !important;
  color: #16193b !important;
  transform: scale(1.1);
}

/* Responsive */

/* ========================================
   TABLET (max-width: 992px)
   ======================================== */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 42, 52, 0.97);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    gap: 10px;
    text-align: center;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    color: #fff !important;
  }

  .nav-right {
    flex: unset;
  }

  /* Hero */
  .hero h1,
  .hero-home h1 {
    font-size: 2.5rem !important;
  }

  .hero-home p {
    font-size: 1rem;
  }

  /* Tour Packages Grid */
  .tour-packages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Featured Destinations */
  .dest-bottom-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .dest-card:last-child {
    grid-column: span 2;
  }

  /* Collections Grid */
  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Offers Grid */
  .offers-grid {
    grid-template-columns: 1fr !important;
  }

  .offer-card {
    flex-direction: row !important;
    gap: 20px !important;
  }

  /* Why Grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Testimonials */
  .testimonial-content-wrapper {
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center;
  }

  .testimonial-image {
    width: 100% !important;
    height: 300px !important;
  }

  .testimonial-text {
    width: 100% !important;
  }

  .rating {
    justify-content: center !important;
  }

  .user-profile {
    justify-content: center !important;
  }

  /* Testimonials slider layout */
  .testimonials-slider {
    flex-direction: column !important;
    gap: 25px !important;
  }

  /* FAQ Grid */
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Footer */
  .footer-grid-new {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }

  .footer-col:first-child {
    grid-column: span 2;
  }

  /* Contact Page - Two Column Layout */
  .contact-section > .container > div[style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Package Details - Two Column Layout */
  .package-details .container > div[style*="grid-template-columns: 1fr 380px"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Booking Widget unstick */
  .booking-widget {
    position: static !important;
  }

  /* Package Hero Image */
  #pkg-hero-img {
    height: 40vh !important;
    max-height: 350px !important;
  }

  /* Search Bar */
  .search-bar {
    flex-direction: column;
    border-radius: 1rem;
  }

  .search-bar input {
    border-radius: 1rem;
    margin-bottom: 10px;
  }

  .search-bar .btn {
    border-radius: 1rem;
    width: 100%;
  }

  /* Form Section */
  .form-section {
    padding: 30px 20px;
  }

  /* About Stats */
  .about-stats-section .container {
    grid-template-columns: 1fr !important;
  }

  .about-stats-section .stats-collage {
    height: 400px !important;
  }

  /* Our Mission Section */
  .our-mission-section .container {
    grid-template-columns: 1fr !important;
  }

  .floating-card.left-card {
    left: 20px !important;
  }

  /* Newsletter */
  .newsletter-section h2 {
    font-size: 2.5rem !important;
  }

  /* Handpicked section title */
  .handpicked-collections h2 {
    font-size: 2.2rem !important;
  }

  /* Exclusive offers title */
  .section-title-left h2 {
    font-size: 2.2rem !important;
  }

  /* FAQ Header */
  .faq-header h2 {
    font-size: 2.2rem !important;
  }
}

/* ========================================
   MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Sections General */
  section {
    padding: 50px 0 !important;
  }

  /* Hero Sections */
  .hero,
  .hero-home {
    min-height: 80vh !important;
  }

  .hero h1,
  .hero-home h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .hero p,
  .hero-home p {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Tour Packages Grid - Single Column */
  .tour-packages-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Destination Grid */
  .dest-bottom-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .dest-card:last-child {
    grid-column: span 1;
  }

  .dest-card {
    height: 200px !important;
  }

  /* Banner */
  .large-dest-banner {
    min-height: 380px !important;
  }

  .banner-content {
    padding: 20px !important;
  }

  .banner-title {
    font-size: 1.5rem !important;
  }

  .banner-nav {
    bottom: 15px !important;
    right: 15px !important;
  }

  /* Why Grid */
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Collections Grid */
  .collections-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .collection-title {
    font-size: 1.3rem;
  }

  /* Offers Grid */
  .offers-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .offer-card {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .offer-image {
    flex: unset !important;
    width: 100% !important;
    height: 200px !important;
  }

  .offer-title {
    font-size: 1.3rem !important;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 60px 0 !important;
  }

  .testimonials-header h2 {
    font-size: 2rem !important;
  }

  .testimonials-slider {
    flex-direction: column !important;
    gap: 20px !important;
    position: relative;
    padding-bottom: 60px !important;
  }

  .testimonial-content-wrapper {
    flex-direction: column !important;
    gap: 25px !important;
    text-align: center;
  }

  .testimonial-image {
    width: 100% !important;
    height: 250px !important;
  }

  .testimonial-text {
    width: 100% !important;
  }

  #testi-heading {
    font-size: 1.6rem !important;
  }

  .slider-btn {
    position: static !important;
  }

  .prev-btn,
  .next-btn {
    display: inline-flex !important;
  }

  /* FAQ Section */
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .faq-header h2 {
    font-size: 1.8rem !important;
  }

  .faq-question {
    font-size: 0.95rem !important;
  }

  .faq-toggle {
    padding: 18px 15px !important;
    gap: 12px !important;
  }

  /* Footer */
  .footer-grid-new {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 25px !important;
  }

  .footer-col:first-child {
    grid-column: span 1;
  }

  .footer-links {
    align-items: center !important;
  }

  .social-links {
    justify-content: center !important;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 60px 0 !important;
  }

  .newsletter-section h2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .newsletter-form {
    flex-direction: column !important;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom .container {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }

  /* Contact Page */
  .contact-section {
    padding: 120px 0 20px !important;
  }

  .contact-section > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .contact-section h1 {
    font-size: 2.5rem !important;
  }

  .contact-section h2 {
    font-size: 1.8rem !important;
  }

  /* Package Details Page */
  .package-details {
    padding: 100px 0 50px !important;
  }

  .package-details .container > div[style*="grid-template-columns: 1fr 380px"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  #pkg-hero-img {
    height: 35vh !important;
    max-height: 280px !important;
    border-radius: 12px !important;
    margin-bottom: 30px !important;
  }

  #pkg-title {
    font-size: 2rem !important;
  }

  .booking-widget {
    position: static !important;
    margin-top: 20px;
  }

  /* Duration Cards */
  .package-info div[style*="display: flex; gap: 20px; margin-bottom: 40px"] {
    flex-wrap: wrap !important;
  }

  /* Package meta row */
  .package-info div[style*="display: flex; gap: 30px"] {
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  /* Packages Page Filter Tabs */
  .filter-tabs {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .filter-btn {
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
  }

  /* Packages Grid (packages.html) */
  .packages-grid {
    grid-template-columns: 1fr !important;
  }

  /* Section titles */
  .section-title h2 {
    font-size: 1.8rem !important;
  }

  .handpicked-collections h2 {
    font-size: 1.8rem !important;
  }

  .section-title-left h2 {
    font-size: 1.8rem !important;
  }

  /* Tip boxes */
  .tips-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================
   SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero h1,
  .hero-home h1 {
    font-size: 1.7rem !important;
  }

  .hero p,
  .hero-home p {
    font-size: 0.9rem !important;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 6px 16px !important;
    font-size: 0.8rem !important;
  }

  .logo {
    font-size: 18px !important;
  }

  /* Section titles */
  .section-title h2,
  .section-title-left h2,
  .faq-header h2,
  .testimonials-header h2 {
    font-size: 1.5rem !important;
  }

  .handpicked-collections h2 {
    font-size: 1.5rem !important;
  }

  /* Newsletter */
  .newsletter-section h2 {
    font-size: 1.5rem !important;
  }

  /* Why Section Header */
  .why-travel-us h2 {
    font-size: 1.5rem !important;
  }

  /* Tour card */
  .tour-title {
    font-size: 1.2rem !important;
  }

  .tour-price {
    font-size: 1.1rem !important;
  }

  /* Contact page */
  .contact-section h1 {
    font-size: 2rem !important;
  }

  .contact-section h2 {
    font-size: 1.5rem !important;
  }

  /* Package details */
  #pkg-title {
    font-size: 1.6rem !important;
  }

  #pkg-hero-img {
    height: 30vh !important;
    max-height: 220px !important;
  }

  /* Testimonials */
  #testi-heading {
    font-size: 1.3rem !important;
  }

  #testi-desc {
    font-size: 0.9rem !important;
  }

  /* Banner */
  .banner-title {
    font-size: 1.2rem !important;
  }

  .banner-content {
    padding: 15px !important;
  }

  .large-dest-banner {
    min-height: 300px !important;
  }

  /* Offer title */
  .offer-title {
    font-size: 1.1rem !important;
  }

  /* Collection title */
  .collection-title {
    font-size: 1.1rem !important;
  }

  /* About Stats small mobile */
  .about-stats-section .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .about-stats-section .stats-collage {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }

  .about-stats-section .collage-large {
    height: 250px !important;
  }

  .about-stats-section .collage-small-wrap {
    height: 250px !important;
    flex-direction: row !important;
  }

  /* Filter tabs full width */
  .filter-btn {
    flex: 1 1 100% !important;
  }

  /* Footer */
  .footer-main {
    padding: 40px 0 20px !important;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure mobile layout doesn't obscure the button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

/* Customize Itinerary Button Hover Style */
.btn-customize-itinerary:hover {
  background: #3538CD !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(53, 56, 205, 0.2);
}


/* About Page Milestones Timeline Layout */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
  transform: translateX(-50%);
}
.milestone-row {
  display: flex;
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}
.milestone-row.left-align {
  justify-content: flex-end;
}
.milestone-row.right-align {
  justify-content: flex-start;
}
.milestone-card {
  width: 45%;
  background: #ffffff;
  border: 1px solid #f6f0e7;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  box-sizing: border-box;
}
.milestone-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 14px;
  height: 14px;
  background: #3538CD;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* About Page Floating Icon hover animation */
.floating-icon-about {
  transition: transform 0.3s ease;
}
.floating-icon-about:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Redesigned Booking Form Responsive Grid */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr !important;
  }
  .form-section {
    padding: 30px 20px !important;
  }
  .timeline-line {
    left: 20px !important;
    transform: none !important;
  }
  .milestone-row {
    padding-left: 45px !important;
    box-sizing: border-box;
    margin-bottom: 35px;
  }
  .milestone-card {
    width: 100% !important;
  }
  .milestone-dot {
    left: 20px !important;
    transform: translateX(-50%) !important;
  }
  .floating-icon-about {
    bottom: -15px !important;
    left: 15px !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 1.8rem !important;
  }
}

/* Enhanced Form Styling for Inputs, Selects, and Textareas */
input, select, textarea, button {
  font-family: 'Poppins', sans-serif !important;
}
input, select, textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}
input:focus, select:focus, textarea:focus {
  border-color: #3538CD !important;
  box-shadow: 0 0 0 4px rgba(53, 56, 205, 0.1) !important;
  outline: none !important;
}






