/* Exact-like GoTrip hero + navbar styling (customized for AMS) */

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

:root {
  --bg: #0b1220;
  --accent: #5563ff;
  --accent-2: #ff5a5f;
  --muted: #97a0b5;
  --white: #ffffff;
  --container: 1200px;
}

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

html,
body {
  height: 100%
}

body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto;
  color: var(--white);
  background: var(--bg)
}

/* container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999
}

.preloader-inner {
  text-align: center
}

.preloader-logo {
  font-weight: 800;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px
}

.preloader-bar {
  width: 220px;
  height: 8px;
  background: #0f1724;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.6)
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  position: relative;
  left: -30%;
  animation: preload 1.2s linear infinite
}

@keyframes preload {
  100% {
    left: 140%
  }
}

/* Header / Nav */
/* ------------ NAVBAR styles & mobile menu ------------ */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1200;
  background: #ffffff57;
}

/* ---------- Dropdown Menu (Desktop) ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, system-ui, Roboto, Arial;
  background: #0b1220;
  color: #fff
}

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

/* Header/nav */
.site-header {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1200;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent)
}
/* ---------- Dropdown Menu (Desktop) ---------- */
.nav-links li {
  position: relative;
  text-decoration: none;
  
}
.nav-links{
  margin-top: 30px;
}
.dropdown{
  text-decoration: none;
}
.nav-links,
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#navbarContent{
  margin-top: 10px;
}
.brand{
  text-decoration: none;
  color: white;
  font: 500;
  font-size: 30px;
  font-weight: 800;
}
.navbar-toggler {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Style the menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar-toggler {
    display: block; /* show button only on mobile */
  }

  .nav-menu {
    display: none;      /* hide menu initially */
    flex-direction: column;
    gap: 10px;
    background: rgba(255,255,255,0.9);
    position: absolute;
    top: 60px; /* adjust based on navbar height */
    right: 0;
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex; /* show menu when active */
  }



}

/* Base style for the button */
#menuToggle {
  display: none; /* hidden by default, shown only on mobile */
  font-size: 38px;
  background-color: transparent; /* white background */
  color: #fff;           /* icon color */
  border: 2px solid transparent;

  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  height: 50px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.btn {
  color: white;

}
.mobile-close{
  color: white;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 30px;

}

/* Hover effect */
#menuToggle:hover {
  background-color: transparent;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Show button only on mobile */
@media (max-width: 768px) {
  #menuToggle {
    display: inline-block;
  }
}






.dropdown-menu ul{
  text-decoration: none;
}
.nav-links ul{
  display: flex;
  
}
.nav-links ul a{
  text-decoration: none;
  color: white;
  margin-left: 30px;
  font-size: 18px;
  margin-top: 0px;
}
.nav-wrap{
  display: flex;
}
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #0f1724;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 1500;
}

.nav-links .dropdown-menu li {
  margin: 0;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-links .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Show dropdown on hover */
.nav-links li:hover > .dropdown-menu {
  display: block;
}

/* ---------- Mobile Dropdown (Accordion Style) ---------- */
.mobile-nav li {
  position: relative;
}

.mobile-nav .dropdown-menu {
  display: none;
  padding-left: 14px;
  margin-top: 6px;
}

.mobile-nav .dropdown-open .dropdown-menu {
  display: block;
}

.mobile-nav .mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .arrow {
  font-size: 14px;
  margin-left: 6px;
  transition: transform 0.3s;
}

.mobile-nav .dropdown-open .arrow {
  transform: rotate(90deg);
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 700
}

/* Modal background */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

/* Modal content box */
.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: slideDown 0.4s ease;
}

/* Close button */
.modal-content .close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
  transition: 0.3s;
}
.modal-content .close:hover {
  color: #000;
  transform: scale(1.2);
}

/* Headings */
.modal-content h2 {
  margin-bottom: 15px;
  color: #333;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

/* Forms */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.auth-form input {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
}
.auth-form input:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* Buttons */
.auth-form button {
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #007BFF;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.auth-form button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Divider */
.modal-content hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes slideDown {
  from {transform: translateY(-30px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .modal-content {
    padding: 20px 15px;
  }
  .auth-form input, .auth-form button {
    font-size: 14px;
  }
}


.auth-tab.active {
  background: #5563ff;
  border-color: #5563ff
}

form.auth-form {
  display: block
}

.auth-row {
  margin: 8px 0
}

.auth-row input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #111827;
  color: #fff
}

.auth-submit {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #5563ff;
  color: #fff;
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer
}

.auth-switch {
  margin-top: 10px;
  font-size: 14px;
  color: #cbd5e1;
  text-align: center
}

/* small helper */
.muted {
  color: #9aa3c0;
  font-size: 14px
}

/* Hero */
.hero {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: center
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero-sample.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.9)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 28, 0.6) 0%, rgba(2, 6, 23, 0.3) 60%)
}

.hero-inner {
  position: relative;
  padding: 120px 0 60px
}

.hero-top {
  margin-bottom: 36px
}

.hero-categories {
  display: flex;
  gap: 18px;
  list-style: none;
  color: rgba(255, 255, 255, 0.8)
}

.hero-categories li {
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-weight: 600
}

.hero-categories li.active {
  border-bottom-color: rgba(255, 255, 255, 0.9)
}

/* title animation */
.animated-up {
  opacity: 0;
  transform: translateY(18px);
  animation: upIn 0.8s forwards ease-out
}

.delay-1 {
  animation-delay: 0.12s
}

@keyframes upIn {
  to {
    opacity: 1;
    transform: none
  }
}

/* hero text */
.hero-content h1 {
  font-size: 64px;
  line-height: 1.02;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -1px
}

.subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px
}

/* Sections */
.section {
  padding: 72px 0;
  background: transparent;
  color: var(--white)
}

.section .section-head {
  text-align: center;
  margin-bottom: 28px
}

.section-head h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px
}

.section-head p {
  color: var(--muted)
}

/* cards grids */
.popular-grid,
.love-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.45);
  transition: transform .28s
}

.card .media {
  height: 200px;
  background-size: cover;
  background-position: center
}

.card .card-body {
  padding: 14px
}

.card h3 {
  margin: 0;
  font-size: 18px
}

.card p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px
}

.card:hover {
  transform: translateY(-6px)
}

/* Responsive */
@media (max-width:900px) {
  .hero-content h1 {
    font-size: 40px
  }

  .nav ul {
    display: none
  }

  .hamburger {
    display: inline-block
  }

  #mobileMenu {
    display: none
  }

  #mobileMenu.open {
    display: block;
    background: rgba(2, 6, 23, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    padding: 12px
  }

  .brand span {
    font-size: 16px
  }
}




body {
  font-family: 'Inter', sans-serif;
}

.navbar {
  background: transparent;
  padding: 15px 40px;
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: #fff;
  margin: 0 10px;
  font-size: 15px;
}

.navbar-nav .dropdown-menu {
  font-size: 14px;
}

.btn-expert {
  background: #fff;

  font-weight: 600;
  border-radius: 8px;
  padding: 8px 16px;
  margin-right: 10px;
}

.btn-sign {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
}

.currency-dropdown,
.country-dropdown {
  margin-right: 15px;
  color: #fff;
  font-size: 14px;

  background: transparent;
  border: none;
}

.navbar-brand {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}

/* Dropdown */
.country-dropdown {
  padding: 8px 12px;
  /* border: 1px solid #ddd;
  border-radius: 6px; */
  font-size: 14px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  background: transparent;
  outline: none;
  margin-right: 15px;
  color: #fff;
}

/* Button Base */
.btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* White Solid Button (Become an Expert) */
.btn-expert {

  color: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-expert:hover {
  background-color: #f7f7f7;
}

/* Outline Button (Sign In / Register) */
.btn-sign {
  background: transparent;
  color: #fff;
  border: 1px solid #ddd;
  margin-left: 10px;
}

.btn-sign:hover {
  background-color: #f5f5f5;
  border-color: #bbb;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #142b3d;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 15px 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* ✅ Responsive */
@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: #ffffff;
  /* pure white */
  color: #000000;
  /* black text */
  transition: background-color 0.3s ease, color 0.3s ease;
}

header.scrolled a {
  color: #000000;
}

header.scrolled .btn {
  border-color: #000000;
  color: #000000;
}

header.scrolled .btn:hover {
  background: #000000;
  color: #ffffff;
}

header.scrolled #two {
  background: #000000;
  color: #ffffff;
}

header.scrolled #three {
  background: #000000;
  color: #ffffff;
}

header.scrolled .country-dropdown {
  background: #000000;
  color: #ffffff;
}

#two,
#three {
  color: white;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Fullscreen video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay (optional) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* adjust darkness */
  z-index: -1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn-primary {
  padding: 12px 30px;
  font-size: 1.2rem;
  border: 2px solid white;
  background: transparent;
  border-radius: 30px;
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* Animation: down → up fade */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

/* Animate the title */
.hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeUp 1s ease-out forwards;
}

/* Animate subtitle with delay */
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* Animate button with more delay */
.btn-primary {
  padding: 12px 30px;
  font-size: 1.2rem;
  border: 2px solid white;
  background: transparent;
  border-radius: 30px;
  color: white;
  transition: all 0.3s ease;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.2);
}




/* popular  */

.section-title {
  text-align: left;
  font-size: 28px;
  font-weight: bold;
  margin: 40px 0 20px;
}

/* Swiper */
.swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: blur(5px);
  transition: filter 0.8s ease-in-out;
}

/* Blur to normal when visible */
.swiper-slide.scroll-show img {
  filter: blur(0px);
}

/* Top Badge */
.tour-days {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
}

/* Card overlay */
.card-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  transition: all 0.4s ease;
}

.card-info h3 {
  font-size: 22px;
  margin: 0;
  transition: transform 0.4s ease;
}

.discover-btn {
  margin-top: 10px;
  background: #fff;
  color: #000;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Hover effect */
.swiper-slide:hover .card-info h3 {
  transform: translateY(-15px);
}

.swiper-slide:hover .discover-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper navigation arrows */



.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px;
  color: #fff;
  margin-top: -500px;
}

.ko2::after , .ko::after{
  margin-top: 200px;
}
.swiper-pagination{
  margin-top: 300px;
}


@media (max-width: 768px) {
  .swiper-slide img {
    height: 400px;
    width: 350px;
    /* fixed width for both desktop & mobile */
    max-width: 100%;
    /* prevents overflow if screen is smaller */
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 24px;
    color: #333;
    margin-top: -750px;
  }

  .card-info h3 {
    font-size: 18px;
  }
}

.section-title,
.section-subtitle {
  margin-left: 70px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease-out forwards;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1rem;
  margin-top: -15px;
  margin-bottom: 50px;
  color: #555;
}

/* Animation Keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay for subtitle */
.section-subtitle {
  animation-delay: 0.3s;
}



/* photo */

.photo-blocks {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 70px 0;
  margin-top: 100px;

}

.block {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

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

.block:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.block:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay text animation */
.overlay h2,
.overlay p,
.overlay button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s forwards;
}

.overlay h2 {
  animation-delay: 0.2s;
}

.overlay p {
  animation-delay: 0.1s;
}

.overlay button {
  animation-delay: 0.4s;
}

/* Keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Style */
.overlay button {
  margin-top: 15px;
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.overlay button:hover {
  background: #ff5a5f;
  color: #fff;
}

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease-out;
}

/* Active when in viewport */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.photo-blocks {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.block {
  position: relative;
  flex: 1;
  min-width: 300px;
  /* keeps a nice minimum width */
  overflow: hidden;
  border-radius: 12px;
}

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

.block:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .photo-blocks {
    flex-direction: column;
    gap: 15px;
  }

  .block {
    width: 100%;
    min-width: auto;
  }

  .overlay {
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .overlay h2 {
    font-size: 22px;
  }

  .overlay button {
    margin-top: 10px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .overlay h2 {
    font-size: 18px;
  }

  .overlay button {
    font-size: 14px;
    padding: 6px 14px;
  }
}


/* reccomed */

.recommended {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.recommended .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

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

.recommended .card-body {
  padding: 15px;
}

.recommended .badge {
  background: #1d4ed8;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
}



/* icon */

.features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 20px;
  text-align: center;
}

.feature {
  flex: 1 1 250px;
  margin: 15px;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  filter: blur(5px);
}

.feature i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature p {
  color: #666;
}

/* Scroll animation active */
.feature.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: all 3s ease;
}



/* 


*/



.testi-area {
  padding: 60px 20px;
  background: #f9f9f9;
}

.testi-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease-in-out;
  min-height: 250px;
}

.testi-card:hover {
  transform: translateY(-6px);
}

.testi-card_profile {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testi-card_avater img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testi-card_review {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 10px;
}

.testi-card_text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.swiper {
  overflow: hidden;
}

.swiper-pagination-bullet {
  background: #007bff;
}


/* 

*/


/* Common */
.container {
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

h2.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

/* About */
.about-content {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.about-link {
  display: inline-block;
  margin-top: 10px;
  color: #0077cc;
  text-decoration: none;
}

.booking-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #25d366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.booking-btn:hover {
  background: #20b954;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/*  */



.footer {
  background: #080808ec;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.newsletter {
  text-align: center;
  margin-bottom: 40px;
}

.newsletter h3 {
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: auto;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-form input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  outline: none;
}

.newsletter-form button {
  background: #3c4ef8;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-box h4 {
  margin-bottom: 15px;
}

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

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

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #ddd;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.social-icons a {
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
}

.social-icons a:hover {
  color: #ddd;
}

.contact-info i {
  margin-right: 8px;
  color: #3cdef3;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.insta-grid img {
  width: 100%;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.payments img {
  height: 24px;
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form input {
    width: 100%;
    text-align: center;
  }

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

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