/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  --first-color: radial-gradient( ellipse , #739bf9, #2a3de8);
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(230, 25%, 80%);
  --body-font: "Syne", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Responsive typography */
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body,
input
{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}
body::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: radial-gradient(circle, #6390f8, #2539eb);
  border-radius: 4px;
}

input,
button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.nav-container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  z-index: -1;
}

.search,
.login {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  background-color: hsla(230, 75%, 15%, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /* For safari */
  padding: 8rem 1.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.search__close,
.login__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: radial-gradient( ellipse , #739bf9, #2a3de8);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.2s;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__search,
.nav__login,
.nav__toggle {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color 0.2s;
}
.nav__close {
  color: #2563eb;
  font-size: 1.25rem;

  cursor: pointer;
  transition: color 0.2s;
}

:is(.nav__logo, .nav__search, .nav__login) {
  color: var(--first-color);
}

.nav__toggle {
  color: white;
}
/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
   background-color: rgb(239 239 241);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, 0.15);
    width: 100%;
    padding-block: 4.5rem 4rem;
    transition: top 0.2s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.2s;
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== LOADER ===============*/

/* Loader Overlay */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(5, 5, 5), rgba(109, 109, 254, 0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s;
}

/* Hidden Loader */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Travel Loader Container */
.travel-loader {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: spinPath 5s linear infinite;
}

/* Circular Path (abstract travel route) */
.travel-loader .path {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* Plane Icon */
.plane {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(125,207,255,0.8);
}

/* Rotation */
@keyframes spinPath {
  100% { transform: rotate(360deg); }
}

/* Brand Text */
.brand-name {
  margin-top: 25px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 6px #ffffff, 0 0 12px #7dcfff; }
  to   { text-shadow: 0 0 15px #ffffff, 0 0 25px #009dff; }
}






/* /////////// MAIN /////////// */




/* main */
.main {
  top: var(--header-height);
  position: relative;
  min-height: 40vh;
  width: 98vw;
  overflow: hidden;
  border-radius: 8px;
  margin: 20px auto ;
  /* margin-bottom: 150px; */
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: var(--first-color);
}
.text-heading {
  color: white;
  font-weight: 900;
  text-shadow: 1px 1px 1px hsl(230, 59%, 34%);
  font-size: 5vh;
}
.text-para {
  color: white;
  font-weight: 900;
  text-shadow: 1px 1px 1px hsl(230, 59%, 34%);
  font-size: 3vh;
}

/* === Global Improvements === */
body {
  background-color: white;
  color: var(--text-color);
  font-family: "Syne", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;

}

h1,
h2,
h3 {
  font-weight: 700;
}

/* Header */

.nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.nav__link {
  position: relative;
  color: rgb(73, 73, 240);
  font-weight: 500;
  padding-bottom: 5px;
  transition: color 0.1s;
}

.nav__link:hover {
  color: #4b4b4a; /* yellow accent */
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: #4b4b4a;
  transition: width 0.1s;
}

.nav__link:hover::after {
  width: 100%;
}

/* Hero Section */
.main-content {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  padding: 2rem;
  border-radius: 8px;
  overflow: hidden;
  min-height: 40vh;
  width: 100%;
  display: flex;
  gap: 30px;

  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.text-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.text-para {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #f3f4f6;
}



label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}

select,
input[type="date"] {
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  background-color: #f9fafb;
  transition: border 0.1s, box-shadow 0.1s;
}

select:focus,
input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.2);
  background-color: #fff;
}

/* Button */
.srch-btn {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 1rem;
  display: flex;
  font-weight: 600;
  align-self: center;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}

.srch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

/* //////    DESTINATION SECTION /////// */
.sec-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
  min-height: 40vh;
  margin-top: 100px;
  line-height: 1;
}
.dest-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  width: 100vw;
  background: linear-gradient(#efefff, #cccbff);
}
.wrapper {
  max-width: 92vw;

  margin: 10px 80px 35px;
  overflow: hidden;
}
.wrapper .card {
  background: #fff;
  display: flex;
  height: auto;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.1s ease;
}
.wrapper .card:hover {
  transform: translateY(-10px);
}
.card .card-image {
  position: relative;
}
.card .card-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 22px;
  object-fit: cover;
}
.card .card-image .card-category {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 0.75rem;
  color: #6366f1;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 25px 25px;
}
.card .card-content .card-title {
  color: #111111;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}
.card .card-content .card-text {
  color: #747474;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card .card-footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  padding-top: 15px;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.card .card-footer .card-profile {
  display: flex;
  align-items: center;
}
.card .card-profile .card-profile-info {
  display: flex;
  flex-direction: column;
}
.card .card-profile .card-profile-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #202020;
}
.card .card-profile .card-profile-role {
  font-size: 0.8rem;
  color: #7a7a7a;
}
.card .card-profile img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card .card-button {
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.81rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.1);
  transition: all 0.1s ease;
}
.card .card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(99, 102, 241, 0.1);
}
.wrapper .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  opacity: 1;
  overflow: hidden;
  position: relative;
  background: #b1b3f8;
}
.wrapper .swiper-pagination-bullet-active {
  background: #a4a7fd;
}
/* Auto-play loading indicator */
.wrapper .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #6366f1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: autoplay-loading 5s linear forwards;
}
.container:hover .wrapper .swiper-pagination-bullet-active::before {
  animation-play-state: paused;
}



/* PACAKAGES PAGE */

.btn {
  background: linear-gradient(135deg, #0072ff, #0055d4);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.1s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 114, 255, 0.1);
}

/* Hero */
.hero {
  position: relative;
  top: calc(var(--header-height) + 2rem);
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
}

.hero p {
  margin-top: 0.6rem;
  color: #555;
  font-size: 1.05rem;
  margin-bottom:50px;
}

.filters {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filters select,
.filters button {
  padding: 0.7rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.1s;
}

.filters select:hover,
.filters button:hover {
  border-color: #0072ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#reset {
  background: var(--first-color);
  font-weight: 600;
  color: white;
}
.wrap-packages {
  padding: 2rem 0;
  min-height: 80vh;
}

/* Packages Grid */
.packages {
 
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
}

/* Card */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  opacity: 1;
  transform: scale(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.card.hide {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.2s ease;
  pointer-events: none;
  visibility: hidden;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

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

.days {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0072ff;
  color: white;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.content {
  padding: 1.3rem;
}

.content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
}

.content > p {
  margin-bottom: 0.6rem;
  color: #666;
  font-size: 0.85rem;
}

.content .price {
  font-weight: 700;
  color: var(--first-color);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.content .locations {
  font-size: 0.9rem;
  color: #0000ff;
  margin-top: 0.1rem;
}

.buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.buttons button {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #0072ff, #0055d4);
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.1s;
}

.buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 114, 255, 0.1);
}

.buttons .outline {
  background: transparent;
  border: 1px solid #6366f1;
  color: #6366f1;
}

/* .buttons .outline:hover {
  background: #5f61e2;
  color: white;
} */

.view-all {
  /* display: inline-block; */
  margin-top: 2rem;
  width: fit-content;
  align-self: center;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  background: var(--first-color);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.1s;
}

.view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 114, 255, 0.1);
}

/* destinations page */
.btn-primary {
 background: var(--first-color);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.1s;
}

.btn-primary:hover {
  background: #005fcc;
}

.hero {
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}



.filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px auto;
  padding: 15px;

  border-radius: 12px;

  flex-wrap: wrap;
  max-width: 1000px;
}

.filters select,
.filters button {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.1s ease;
}

.filters button {
  background: var(--first-color);
  font-weight: 500;
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  padding: 20px 40px 60px;
  max-width: 93vw;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.1s, box-shadow 0.1s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

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

.card-body {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.card-body p {
  flex-grow: 1;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card-body .location {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.card-body .location::before {
  content: "📍";
  margin-right: 6px;
}

.card-body button {
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: var(--first-color);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.1s;
}

.card-body button:hover {
  background: #005fcc;
}




/* NEW PAGES STYLE */
/* ===== GALLERY STYLES ===== */
.masonry-grid {
  margin: 20px auto;
  column-count: 3;
  column-gap: 15px;
  padding: 0 20px;
  max-width: 1200px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 15px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease;
}

.masonry-item:hover {
  transform: translateY(-5px);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.masonry-item:hover .image-overlay {
  opacity: 1;
}

.image-overlay p {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.image-overlay span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Gallery preview on homepage */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 40vh;
  width: 94vw;
  gap: 15px;
  margin: 30px auto;
}

.gallery-item {
 
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.view-all {
  display: block;
  text-align: center;
  margin: 20px auto;
  padding: 12px 30px;
  background: var(--first-color);
  color: white;
  border-radius: 30px;
  width: fit-content;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.1s ease;
}

.view-all:hover {
  background: var(--first-color-alt);
}

/* ===== CAR RENTAL STYLES ===== */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.car-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.car-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.car-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--first-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.car-details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.car-details h3 {
  margin: 0 0 10px;
  color: var(--title-color);
  font-size: 1.2rem;
}

.car-specs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-color);
}

.car-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.car-price {
  margin-bottom: 15px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--first-color);
  margin: 0;
}

.price span {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 400;
}

.includes {
  margin: 5px 0 0;
  font-size: 0.85rem;
  color: var(--text-color-light);
}

.book-btn {
  background: var(--first-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.1s ease;
  margin-top: auto;
}

.book-btn:hover {
 transform: translateY(3px);
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 2% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: modalFade 0.1s;
}

@keyframes modalFade {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-color-light);
}

.close-modal:hover {
  color: var(--text-color);
}

.modal-content h2 {
  margin-top: 0;
  color: var(--title-color);
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--title-color);
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.1s ease;
}

.form-group input:focus {
  border-color: var(--first-color);
  outline: none;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.submit-booking {
  background: var(--first-color);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.1s ease;
  width: 100%;
  font-size: 1rem;
  margin-top: 10px;
}

.submit-booking:hover {
  background: var(--first-color-alt);
}

/* ===== BRANDS CAROUSEL ===== */
.brands-section {
  background: #f9f9f9;
  padding: 50px 0;
  margin: 50px 0;
  overflow: hidden;
}

.brands-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brands-list {
  display: flex;
 
  width: max-content; /* Double the width for seamless loop */
}

.brand-item {
  flex: 0 0 auto;
  width:150px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-width: 200px;
  height: 100px;
  mix-blend-mode:color-dodge;
  transition: all 0.1s ease;
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 5)); /* Move by half the items */
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/assets/img/bg2.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.1s ease;
}

.cta-btn.primary {
  background: var(--first-color);
  color: white;
}

.cta-btn.primary:hover {
  background: var(--first-color-alt);
  transform: translateY(-3px);
  border: 1px solid rgb(88, 88, 236);

}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--title-color);
  transform: translateY(-3px);
}

/* ===== FOOTER STYLES ===== */
.footer {
  background:hsl(213.7deg 53.33% 25.78%)  ;
  color: white;
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3:after,
.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: var(--first-color);
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.1s ease;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.social-links {
  display: flex;
  gap: 15px;
  
  margin-top: 20px;
}

.social-links-con {
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin-top: 20px;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}
.footer-bottom a{
  color: inherit;
  
}
.footer-bottom a:hover{
  text-decoration: underline;
 

}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--title-color);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-color);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: 5px;
}

.stat p {
  margin: 0;
  font-weight: 600;
  color: var(--title-color);
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: var(--title-color);
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.values-section,
.team-section,
.testimonials-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.1s ease;
}

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

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--first-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--title-color);
}

.value-card p {
  color: var(--text-color);
  line-height: 1.6;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid #f3f3f3;
}

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

.team-member h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--title-color);
}

.team-member .role {
  color: var(--first-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member p:last-child {
  color: var(--text-color);
  line-height: 1.6;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial:before {
  content: '"';
  font-size: 5rem;
  color: #f3f3f3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.7;
  color: var(--text-color);
}

.testimonial-author {
  border-top: 1px solid #f3f3f3;
  padding-top: 20px;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: var(--title-color);
}

.testimonial-author p {
  color: var(--text-color-light);
  margin: 0;
}

.about-cta {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/img/bg2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.1s ease;
}

.cta-btn.primary {
  background: var(--first-color);
  color: white;
}

.cta-btn.primary:hover {
  background: var(--first-color-alt);
  transform: translateY(-3px);
  border: 1px solid rgb(88, 88, 236);
  
}



.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--title-color);
  transform: translateY(-3px);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 1.9rem;
 
  color: var(--title-color);
  margin-bottom: 20px;
}


.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--first-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h3 {
  margin-bottom: 5px;
  color: var(--title-color);
}

.contact-text p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.5;
}

.social-links h3 {
  margin-bottom: 15px;
  color: var(--title-color);
}

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

.social-icons a {
  width: 45px;
  height: 45px;
  background: #f3f3f3;
  color: var(--title-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.1s ease;
}

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

.contact-form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 1.8rem;
  color: var(--title-color);
  margin-bottom: 25px;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--title-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.1s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--first-color);
  outline: none;
}

.submit-btn {
  background: var(--first-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.1s ease;
  width: 100%;
  font-size: 1.1rem;
}

.submit-btn:hover {
  background: var(--first-color-alt);
}

.faq-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}


.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
 
}
.faq-question:hover{
  background: var(--first-color);
  color: white;
}
.faq-question:hover h3{

  color: white;
}


.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--title-color);
}

.faq-question i {
  transition: transform 0.1s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease, padding 0.1s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
}

.map-section {
  padding: 80px 20px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 400px;
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ccc;
}

.map-placeholder h3 {
  margin-bottom: 10px;
  color: var(--title-color);
}

.map-placeholder p {
  margin: 5px 0;
}



/*  */



 /* Modern Hero Section */
      .modern-hero {
        position: relative;
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        overflow: hidden;
      }
      
      .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(45, 46, 48, 0.103) 0%, rgba(29, 29, 30, 0.137) 100%), url('/assets/img/bg2.jpg');
        background-size: cover;
        background-position: center;
        z-index: -2;
      }
      
      .hero-content {
        max-width: 800px;
        padding: 0 20px;
        z-index: 1;
      }
      
      .modern-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 15px;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      }
      
      .modern-hero p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
      }
      
      /* Enhanced Filters */
      .enhanced-filters {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        padding: 25px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-width: 1000px;
        margin: -40px auto 40px;
        position: relative;
        z-index: 10;
      }
      
      .filter-group {
        display: flex;
        flex-direction: column;
        min-width: 180px;
      }
      
      .filter-group label {
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--title-color);
        font-size: 0.9rem;
      }
      
      .filter-select {
        padding: 12px 15px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        background: white;
        font-size: 1rem;
        transition: all 0.1s ease;
        cursor: pointer;
      }
      
      .filter-select:focus {
        border-color: var(--first-color);
        outline: none;
        box-shadow: 0 0 0 3px rgba(42, 61, 232, 0.1);
      }
      
      .filter-btn {
        padding: 12px 25px;
        background: var(--first-color);
        color: white;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.1s ease;
        align-self: flex-end;
      }
      
      .filter-btn:hover {
        
        transform: translateY(-2px);
      }
      
      /* Enhanced Card Design */
      .enhanced-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        padding: 20px;
        max-width: 1400px;
        margin: 0 auto;
      }
      
      .enhanced-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.1s ease;
        position: relative;
      }
      
      .enhanced-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
      }
      
      .card-image {
        height: 220px;
        overflow: hidden;
        position: relative;
      }
      
      .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      
      .enhanced-card:hover .card-image img {
        transform: scale(1.05);
      }
      
      .card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--first-color);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
      }
      
      .card-content {
        padding: 20px;
      }
      
      .card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: var(--title-color);
      }
      
      .card-content p {
        color: var(--text-color);
        margin-bottom: 15px;
        line-height: 1.6;
      }
      
      .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-top: 15px;
        border-top: 1px solid #f1f1f1;
      }
      
      .location {
        display: flex;
        align-items: center;
        color: var(--first-color);
        font-weight: 500;
      }
      
      .location i {
        margin-right: 5px;
      }
      
      .rating {
        display: flex;
        align-items: center;
        color: #f59e0b;
      }
      
      .rating i {
        margin-right: 3px;
      }
      
      .card-button {
        display: block;
        width: 100%;
        padding: 12px;
        background: var(--first-color);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.1s ease;
        text-align: center;
        text-decoration: none;
      }
      
      .card-button:hover {
        transform: translateY(-3px);
      }
      
      /* Packages Specific Styles */
      .package-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--first-color);
        margin-bottom: 10px;
      }
      
      .package-details {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
      }
      
      .detail-item {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: var(--text-color);
      }
      
      .detail-item i {
        margin-right: 5px;
        color: var(--first-color);
      }
      
      /* Featured Section on Homepage */
      .featured-section {
        padding: 80px 10px;
        background: #f8fafc;
      }
      
      .section-header {
        text-align: center;
        margin-bottom: 50px;
      }
      
      .section-header h2 {
        font-size: 2.5rem;
        color: var(--title-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }
      
      .section-header h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--first-color);
        border-radius: 2px;
      }
      
      .section-header p {
        font-size: 1.1rem;
        color: var(--text-color);
        max-width: 600px;
        margin: 0 auto;
      }
      
      /* View All Button */
      .view-all-container {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;
      }
      
      .view-all-btn {
        display: inline-block;
        padding: 15px 35px;
        background: var(--first-color);
        color: white;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.1s ease;
        box-shadow: 0 5px 15px rgba(42, 61, 232, 0.1);
      }
      
      .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(42, 61, 232, 0.1);
      }
      

       /* Package Specific Styles */
      .package-details {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
      }
      
      .detail-item {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: var(--text-color);
        background: #f8fafc;
        padding: 5px 10px;
        border-radius: 6px;
      }
      
      .detail-item i {
        margin-right: 5px;
        color: var(--first-color);
      }
      
      .package-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--first-color);
        margin-bottom: 15px;
      }
      
      .price-note {
        font-size: 0.9rem;
        color: var(--text-color-light);
        margin-bottom: 15px;
      }
      
      .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-top: 15px;
        border-top: 1px solid #f1f1f1;
      }
      
      .location {
        display: flex;
        align-items: center;
        color: var(--first-color);
        font-weight: 500;
      }
      
      .location i {
        margin-right: 5px;
      }
      
      .rating {
        display: flex;
        align-items: center;
        color: #f59e0b;
      }
      
      .rating i {
        margin-right: 3px;
      }
      
      .card-buttons {
        display: flex;
        gap: 10px;
      }
      
      .card-button {
        flex: 1;
        padding: 12px;
        background: var(--first-color);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.1s ease;
        text-align: center;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .card-button:hover {
        transform: translateY(-3px);
      }
      
      .card-button.outline {
        background: transparent;
        border: 2px solid rgb(109, 109, 240);
        color: var(--first-color);
      }
      
      .card-button.outline:hover {
        background: var(--first-color);
        color: white;
      }
      
      /* Featured Section */
      .featured-section {
        padding: 80px 20px;
        background: #f8fafc;
      }
      
      .section-header {
        text-align: center;
        margin-bottom: 50px;
      }
      
      .section-header h2 {
        font-size: 2.5rem;
        color: var(--title-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }
      
      .section-header h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--first-color);
        border-radius: 2px;
      }
      
      .section-header p {
        font-size: 1.1rem;
        color: var(--text-color);
        max-width: 600px;
        margin: 0 auto;
      }
      
      /* Testimonials Section */
      .testimonials-section {
        padding: 80px 20px;
        background: white;
      }
      
      .testimonial-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .testimonial-card {
        background: white;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border-left: 4px solid var(--first-color);
      }
      
      .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: var(--text-color);
        line-height: 1.6;
      }
      
      .testimonial-author {
        display: flex;
  flex-direction: column;
      }
      
      .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
      }
      
      .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .author-details h4 {
        margin: 0 0 5px;
        color: var(--title-color);
      }
      
      .author-details p {
        margin: 0;
        color: var(--text-color-light);
        font-size: 0.9rem;
      }
      
      /* CTA Section */
      .cta-section {
        padding: 80px 20px;
        background: linear-gradient(135deg, rgba(51, 52, 54, 0.9) 0%, rgba(51, 52, 54, 0.104) 100%), url('/assets/img/bg2.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
      }
      
      .cta-content {
        max-width: 700px;
        margin: 0 auto;
      }
      
      .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }
      
      .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
      }
      
      .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
      }
      
      .cta-button {
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.1s ease;
      }
      
      .cta-button.primary {
        background: var(--first-color);
        color: white;
      }
      
      .cta-button.primary:hover {
     
        transform: translateY(-3px);
      }
      
      .cta-button.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
      }
      
      .cta-button.secondary:hover {
        background: var(--first-color);
        color: white;
        border: none;
        transform: translateY(-3px);
      }
      

      /* galllery */

      /* Modern Masonry Gallery Styles */
      .gallery-hero {
        text-align: center;
        padding: 90px 20px 40px;
      
      }
      
      
      .gallery-filters {
       display: grid;
       grid-template-columns: repeat(7 , 1fr);
        gap: 10px;
        overflow-x: scroll;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        max-width: 900px;
        margin: 0 auto;
        transform: translateY(-20px);
        scroll-behavior: smooth;
        
      }
         .gallery-filters::-webkit-scrollbar{
          background:transparent;
          height: 4px;
         }
          .gallery-filters::-webkit-scrollbar-thumb{
            background: rgba(35, 34, 34, 0.245);
            width: 100px;
            height: 1px;
          }
      
      .filter-btn {
        min-width: max-content;
        padding: 10px 20px;
        border: none;
        border-radius: 30px;
        background: #f3f3f3;
        color: var(--text-color);
        font-weight: 500;
        cursor: pointer;
        transition: all 0.1s ease;
      }
      
      .filter-btn:hover, .filter-btn.active {
        background: var(--first-color);
        color: white;
      }
      
      .masonry-grid {
        columns: 4;
        column-gap: 15px;
        padding: 20px;
        max-width: 1400px;
        margin: 0 auto;
      }
      
      .masonry-item {
        break-inside: avoid;
        margin-bottom: 15px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.1s ease;
        cursor: pointer;
      }
      
      .masonry-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }
      
      .masonry-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
      }
      
      .masonry-item:hover img {
        transform: scale(1.05);
      }
      
      .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 20px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.1s ease;
      }
      
      .masonry-item:hover .image-overlay {
        opacity: 1;
        transform: translateY(0);
      }
      
      .image-overlay h3 {
        margin: 0 0 5px;
        font-size: 1.1rem;
      }
      
      .image-overlay p {
        margin: 0;
        font-size: 0.9rem;
        opacity: 0.9;
      }
      
      .image-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--first-color);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
      }
      
      .gallery-cta {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, rgba(115, 155, 249, 0.05) 0%, rgba(42, 61, 232, 0.05) 100%);
      }
      
      .gallery-cta h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: var(--title-color);
      }
      
      .gallery-cta p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 30px;
        color: var(--text-color);
      }
      
      .cta-button {
        display: inline-block;
        padding: 15px 35px;
        background: var(--first-color);
        color: white;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.1s ease;
        box-shadow: 0 5px 15px rgba(42, 61, 232, 0.1);
      }
      
      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(42, 61, 232, 0.2);
      }
      
      /* Lightbox customization */
      .fancybox-caption {
        font-size: 1.1rem;
        text-align: center;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.7);
      }
      
      .fancybox-toolbar {
        background: rgba(0, 0, 0, 0.5);
      }
      
      /* Responsive adjustments */
      @media (max-width: 1200px) {
        .masonry-grid {
          columns: 3;
        }
      }
      
      @media (max-width: 900px) {
        .masonry-grid {
          columns: 2;
        }
        
        .gallery-hero h1 {
          font-size: 2.3rem;
        }
      }
      
      @media (max-width: 600px) {
        .masonry-grid {
          columns: 1;
        }
        
        .gallery-filters {
         overflow-x: scroll;
        }
        
        .filter-btn {
          width: 100%;
          text-align: center;
        }
     
        
        .gallery-hero h1 {
          font-size: 2rem;
        }
      }
      /* Responsive Adjustments */
      @media (max-width: 1100px) {
        .enhanced-grid {
          grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        }
      }
      
      @media (max-width: 900px) {
        .modern-hero h1 {
          font-size: 2.5rem;
        }
        
        .modern-hero p {
          font-size: 1.1rem;
        }
        
        .enhanced-filters {
          margin: -30px 20px 30px;
          padding: 20px;
        }
      }
      
      @media (max-width: 768px) {
        .modern-hero {
          height: 50vh;
        }
        
        .modern-hero h1 {
          font-size: 2.2rem;
        }
        
        .enhanced-filters {
          flex-direction: column;
        }
        
        .filter-btn {
          align-self: stretch;
          margin-top: 10px;
        }
        
        .enhanced-grid {
          grid-template-columns: 1fr;
          padding: 15px;
        }
        
        .section-header h2 {
          font-size: 2rem;
        }
        
        .card-buttons {
          flex-direction: column;
        }
        
        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }
        
        .cta-button {
          width: 100%;
          max-width: 250px;
          text-align: center;
        }
        .social-links-con{
          align-items: center;
        }
     
      }
      
      @media (max-width: 480px) {
        .modern-hero {
          height: 45vh;
        }
        
        .modern-hero h1 {
          font-size: 2rem;
        }
        
        .card-image {
          height: 200px;
        }
        
        .package-details {
          flex-direction: column;
          gap: 8px;
        }
      }
      /* Responsive Adjustments */
      @media (max-width: 1100px) {
        .enhanced-grid {
          grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
      }
      
      @media (max-width: 900px) {
        .modern-hero h1 {
          font-size: 2.8rem;
        }
        
        .modern-hero p {
          font-size: 1.1rem;
        }
        
        .enhanced-filters {
          margin: -30px 20px 30px;
          padding: 20px;
        }
      }
      
      @media (max-width: 768px) {
        .modern-hero {
          height: 60vh;
        }
        
        .modern-hero h1 {
          font-size: 2.3rem;
        }
        
        .enhanced-filters {
          flex-direction: column;
        }
        
        .filter-btn {
          align-self: stretch;
          margin-top: 10px;
        }
        
        .enhanced-grid {
          grid-template-columns: 1fr;
          padding: 15px;
        }
        
        .section-header h2 {
          font-size: 2rem;
        }
      }
      
      @media (max-width: 480px) {
        .modern-hero {
          height: 50vh;
        }
        
        .modern-hero h1 {
          font-size: 2rem;
        }
        
        .card-image {
          height: 180px;
        }
      }






/* Responsive adjustments */
@media screen and (max-width: 968px) {
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 576px) {
  .main{
    width: 100vw;
    border-radius: 0;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .values-container,
  .team-container,
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    gap: 10px;
  }
    .contact-item p{
      max-width: 300px;
    }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 20px;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 968px) {
  .masonry-grid {
    column-count: 2;
  }
  
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
  
  .gallery-preview {
    grid-template-columns: 1fr;
  }
  
  .car-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 20px;
  }
}




@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .filters {
    flex-direction: column;
    align-items: stretch;
  }
  .grid {
    padding: 20px;
  }
}

@keyframes autoplay-loading {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.wrapper :where(.swiper-button-prev, .swiper-button-next) {
  color: #6366f1;
  margin-top: -35px;
  transition: all 0.1s ease;
}
.wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
  color: #8b5cf6;
}
/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .wrapper {
    margin: 0 10px 25px;
  }
  .wrapper :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  width: 90vw;
  margin: 0 auto;
 color: rgb(109, 53, 231);
  padding: 10px 0;
}
.section-para {
  padding: 20px 0px;
  width: 90vw;
  margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    align-items: stretch;
  }

  .text-heading {
    font-size: 1.8rem;
    text-align: left;
  }

  .text-para {
    font-size: 1rem;
    text-align: left;
  }
  .wrapper {
    margin: 0 10px 25px;
  }
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */

/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 3rem;
  }
  .main {
    top: calc(var(--header-height) + 2rem);
    min-height: 82vh;
  }
  .main-content {
    justify-content: center;
    gap: 100px;
    min-height: 82vh;
  }
  .dest-body {
    min-height: 60vh;
  }
  .hero{
    margin-top: 50px;
  }
  .search-box div {
    flex: 1 1 180px;
  }
  .nav__close,
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }
.nav__link{
color: white;
}

}

@media screen and (min-width: 1150px) {
  .nav-container {
    margin-inline: auto;
  }
}
