:root {
  --bg-white: hsl(0, 0%, 0%);
  --bg-black-alpha-20: hsla(0, 0%, 0%, 0.2);
  --bg-lavender-blush: hsl(0, 0%, 100%);
  --bg-majorelle-blue: hsl(249, 95%, 63%);
  --bg-ocean-blue: hsl(249, 63%, 54%);
  --bg-majorelle-blue-alpha-5: hsla(249, 95%, 63%, 0.05);
  --bg-misty-rose: hsl(0, 0%, 100%);
  --bg-red-salsa: hsl(357, 94%, 63%);
  --bg-red-salsa-alpha-5: hsla(357, 94%, 63%, 0.05);
  --bg-english-vermillion: hsl(357, 64%, 53%);
  --bg-chrome-yellow-alpha-5: hsla(40, 100%, 50%, 0.05);
  --bg-sunglow-alpha-10: hsla(48, 100%, 50%, 0.1);
  --bg-gainsboro: hsl(0, 0%, 100%);

  /* text color */
  --text-white: hsl(0, 0%, 0%);
  --text-gunmetal: hsl(209, 40%, 14%);
  --text-light-coral: hsl(357, 96%, 73%);
  --text-granite-gray: hsl(210, 4%, 38%);
  --text-majorelle-blue: hsl(249, 95%, 63%);
  --text-sunglow: hsl(48, 100%, 50%);

  /* border color */
  --border-gainsboro: hsl(0, 0%, 100%);

  /**
   * TYPOGRAPHY
   */

  /* font family */
  --ff-poppins: 'Poppins', sans-serif;

  /* font size */
  --fontSize-1: 4.2rem;
  --fontSize-2: 3.6rem;
  --fontSize-3: 2.5rem;
  --fontSize-4: 2.4rem;
  --fontSize-5: 2rem;
  --fontSize-6: 1.6rem;
  --fontSize-7: 1.5rem;

  /* font weight */
  --weight-bold: 700;
  --weight-semiBold: 600;
  --weight-medium: 500;

  /**
   * SPACING
   */

  --section-spacing: 80px;

  /**
   * BOX SHADOW
   */

  --shadow-1: 0 2px 10px hsla(209, 40%, 14%, 10%);
  --shadow-2: 0 5px 10px hsla(249, 95%, 63%, 25%);
  --shadow-3: 0 5px 10px hsla(357, 64%, 53%, 25%);
  --shadow-4: 0 30px 50px hsla(357, 64%, 53%, 30%);

  /**
   * RADIUS
   */

  --radius-pill: 200px;
  --radius-circle: 50%;
  --radius-30: 30px;
  --radius-20: 20px;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

  /* Modern About Page Styles */

  /* Reset and Base Styles */
  --primary-color: #2d5f5d;
  --secondary-color: #a67f5d;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #ffffff;
  --bg-off-white: #f8f8f8;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/*-----------------------------------*\
  #APP LOADING STATE
  
  Hide all main content until app is ready.
  This prevents FOUC (Flash of Unstyled Content).
  The .app-ready class is added by assetLoader.js
  when all critical assets are loaded.
\*-----------------------------------*/

/* Prevent scroll during loading */
body:not(.app-ready) {
  overflow: hidden;
}

/* Hide main content until ready */
body:not(.app-ready) main,
body:not(.app-ready) .header,
body:not(.app-ready) #react-footer,
body:not(.app-ready) .plan-trip-btn,
body:not(.app-ready) #tripPlannerPage {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Smooth reveal transition */
main,
.header,
#react-footer,
.plan-trip-btn,
#tripPlannerPage {
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* When ready, show content */
body.app-ready main,
body.app-ready .header,
body.app-ready #react-footer,
body.app-ready .plan-trip-btn,
body.app-ready #tripPlannerPage {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* Remove default body margin */
  padding: 0;
  /* Remove default body padding */
  background-color: #ffffff;
  /* Beige background color */
  color: #323232;
  /* Dark Grey text color */
  font-size: var(--fontSize-6);
  line-height: 1.8;
  /* Other styles for the body */
}

body.nav-active {
  overflow: hidden;
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.btn {
  height: 50px;
  color: var(--text-white);
  padding-inline: 30px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: max-content;
  transition: var(--transition-1);
}

.btn-primary {
  background-color: var(--bg-majorelle-blue);
}

.btn-primary:is(:hover, :focus-visible) {
  background-color: var(--bg-ocean-blue);
  box-shadow: var(--shadow-2);
}

.btn-secondary {
  background-color: #ffffff;
}

.btn-secondary:is(:hover, :focus-visible) {
  background-color: var(--bg-english-vermillion);
  box-shadow: var(--shadow-3);
}

.section {
  padding-block-end: var(--section-spacing);
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.title {
  color: var(--text-gunmetal);
  font-weight: var(--weight-semiBold);
  line-height: 1.45;
}

.h1 {
  font-size: var(--fontSize-1);
  line-height: 1.2;
}

.hero-title {
  position: relative;
  margin-top: 10px;
}

.h2 {
  font-size: var(--fontSize-2);
}

.h3 {
  font-size: var(--fontSize-4);
}

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

.w-100 {
  width: 100%;
}

.section-subtitle {
  color: var(--text-majorelle-blue);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
}

.section-title {
  margin-block: 10px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--bg-gainsboro);
  overflow: hidden;
}

/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: grid;
  place-content: center;
  /* z-index must be higher than header (1000) to prevent FOUC */
  z-index: 99999;
  transition: var(--transition-1);
}

.preloader.remove {
  visibility: hidden;
  opacity: 0;
}

.preloader .img {
  animation: bounce 800ms ease-in-out infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(-10px);
  }

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

.preloader-inner {
  position: relative;
}

.preloader-inner::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 10px;
  background-color: var(--bg-black-alpha-20);
  filter: blur(4px);
  z-index: -1;
  animation: dropShadow 800ms ease-in-out infinite alternate;
}

@keyframes dropShadow {
  0% {
    width: 40%;
  }

  100% {
    width: 80%;
  }
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: none;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
}

.header.scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: none;
  border-bottom: none;
  box-shadow: none;
  animation: slideInDown 0.3s ease-out;
}

.header.scrolled .navbar-blend {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.header.scrolled .custom-icon {
  filter: brightness(1.1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

/* For IMG logos (About/Contact) and Home Page */
.logo-container img {
  width: auto;
  height: 60px;
  /* Default State: Show original logo colors (User confirmed Curve.svg is correct) */
  /* Just a drop shadow for better contrast on mixed backgrounds */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: filter 0.3s ease;
  margin-top: -15px;
  object-fit: contain;
}

/* Scrolled State: Invert colors for white header (preserves details) */
.header.scrolled .logo-container img {
  filter: invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Specific class targeting */
.logo-container .logo-text-img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header.scrolled .logo-container .logo-text-img {
  filter: invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header .container,
.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 32px;
  width: 100%;
  max-width: none;
  margin: 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-container {
  height: 64px;
}

.logo-container {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.custom-icon {
  width: auto;
  height: 50px;

  /* Ensure logo is visible on all screen sizes */
  max-width: 100%;
  object-fit: contain;
  margin: 0;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar-list {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar-item {
  list-style: none;
}

.navbar-link {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-link.active {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.navbar-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .custom-icon {
    height: 40px;
  }
}

.header.active {
  position: fixed;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-bottom: none;
  animation: slideIn 500ms ease forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }

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

.header .logo img {
  width: 160px;
}

.nav-toggle-btn {
  font-size: 3.2rem;
}

.navbar {
  position: fixed;
  top: 0;
  right: -350px;
  max-width: 350px;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.18);
  /* glassy white */
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-right: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: 400ms var(--cubic-out);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-350px);
  transition-duration: 500ms;
  visibility: visible;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-list {
  margin-block-start: 0;
  /* Remove top margin */
}

.navbar-link {
  position: relative;
  color: var(--text-gunmetal);
  font-size: 1.3rem;
  /* Bigger text */
  font-weight: var(--weight-medium);
  padding-block: 8px;
  transition: var(--transition-1);
}

.navbar-link::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 10px;
  background-color: var(--bg-majorelle-blue);
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  border-radius: 5px;
  opacity: 0;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active)::before {
  opacity: 1;
}

.navbar-link:is(:hover, :focus-visible, .active) {
  transform: translateX(10px);
}

.header-action {
  margin-block-start: auto;
  padding-block-start: 20px;
  border-block-start: 1px solid var(--border-gainsboro);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.login-btn {
  color: var(--text-gunmetal);
  font-size: var(--fontSize-7);
  font-weight: var(--weight-medium);
  transition: var(--transition-1);
}

.login-btn:is(:hover, :focus-visible) {
  opacity: 0.8;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--bg-white);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.overlay.active {
  visibility: visible;
  opacity: 0.5;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  padding-block-start: 120px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.adventure-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: 110% 110%;
  background-position: center;
  background-repeat: no-repeat;
  animation: gentleBackgroundPan 45s ease-in-out infinite alternate;
}

/* Subtle background animation */
@keyframes gentleBackgroundPan {
  0% {
    background-position: 0% 50%;
    background-size: 110% 110%;
  }

  50% {
    background-position: 50% 0%;
    background-size: 105% 105%;
  }

  100% {
    background-position: 100% 50%;
    background-size: 110% 110%;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .adventure-hero {
    animation: none;
    background-size: cover;
    background-position: center;
  }
}

.adventure-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.adventure-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
}

.adventure-title {
  font-size: 7rem;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.title-line {
  display: block;
  margin: 0.3em 0;
}

.highlight-word {
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
  margin: 0 4px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Legacy styles removed - replaced with new positioning */

.social-media-vertical {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: gentlePulse 3s ease-in-out infinite;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: none;
}

@keyframes gentlePulse {

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

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Social Proof Top Left */
.social-proof-top-right {
  position: absolute;
  top: 150px;
  left: 50px;
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 10;
}

.social-proof-top-right .user-stats {
  color: rgba(255, 255, 255, 0.789);
  font-size: 1.7rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.social-proof-top-right .stats-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
}

.social-proof-top-right .user-icons {
  display: flex;
  gap: 8px;
}

.user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.avatar-1 {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFE4E1 100%);
  position: relative;
}

.avatar-1::before {
  content: '👩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.avatar-2 {
  background: linear-gradient(135deg, #87CEEB 0%, #E0F6FF 100%);
  position: relative;
}

.avatar-2::before {
  content: '👨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.avatar-3 {
  background: linear-gradient(135deg, #DDA0DD 0%, #F8F8FF 100%);
  position: relative;
}

.avatar-3::before {
  content: '👩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.avatar-4 {
  background: linear-gradient(135deg, #90EE90 0%, #F0FFF0 100%);
  position: relative;
}

.avatar-4::before {
  content: '👨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.avatar-5 {
  background: linear-gradient(135deg, #F0E68C 0%, #FFFACD 100%);
  position: relative;
}

.avatar-5::before {
  content: '👩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

/* Facilities Bottom Right - Compact */
.facilities-bottom-right {
  position: absolute;
  bottom: 80px;
  right: 80px;
  left: auto;
  max-width: 320px;
  z-index: 10;
}

.facilities-subtitle {
  font-size: 1.7rem;
  color: white;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', sans-serif;
}

.service-bubbles-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 300px;
}

.service-bubbles-compact .service-bubble {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 6px 12px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.service-bubbles-compact .service-bubble:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Legacy hero styles (preserved for compatibility) */
.hero-title {
  margin-block: 20px;
}

.hero-text {
  color: #000000;
  margin-block-end: 30px;
}

.hero .btn-secondary {
  margin-block-end: 20px;
}

.hero-btn {
  color: var(--text-gunmetal);
  font-weight: var(--weight-medium);
  display: flex;
  align-items: center;
  gap: 30px;
  transition: var(--transition-1);
}

.hero-btn .btn-img {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--bg-gainsboro);
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-1);
}

.hero-btn .img-cover {
  border-radius: inherit;
}

.hero-btn ion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  background-color: var(--bg-white);
  padding: 10px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-1);
}

.hero-btn:is(:hover, :focus-visible) {
  color: var(--text-majorelle-blue);
}

/* Responsive Design for Adventure Hero */
@media (max-width: 768px) {
  .adventure-hero {
    background-attachment: scroll;
    animation: none;
    background-size: cover !important;
    background-position: center !important;
  }

  .adventure-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .highlight-word {
    padding: 6px 12px;
    font-size: 0.9em;
    margin: 2px;
  }

  .social-media-vertical {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-proof-top-right {
    position: static;
    align-items: center;
    margin: 20px 0;
  }

  .social-proof-top-right .user-stats {
    font-size: 1rem;
    text-align: center;
  }

  .social-proof-top-right .stats-number {
    font-size: 1.3rem;
  }

  .user-avatar {
    width: 30px;
    height: 30px;
  }

  .avatar-1::before,
  .avatar-2::before,
  .avatar-3::before,
  .avatar-4::before,
  .avatar-5::before {
    font-size: 16px;
  }

  .facilities-bottom-right {
    position: static;
    margin: 20px auto;
    max-width: none;
    text-align: center;
    padding: 0 20px;
  }

  .facilities-subtitle {
    font-size: 1rem;
  }

  .service-bubbles-compact {
    justify-content: center;
    max-width: none;
  }

  .service-bubbles-compact .service-bubble {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .adventure-title {
    font-size: 2rem;
  }

  .highlight-word {
    display: inline-block;
    margin: 2px;
  }

  .service-bubbles-compact {
    gap: 6px;
  }

  .service-bubbles-compact .service-bubble {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

/* TopDestinations.css */

/*-----------------------------------*\
  #EXPERIENCE
\*-----------------------------------*/

.exp .container {
  display: grid;
  gap: 50px;
}

.exp-banner {
  position: relative;
}

.exp .section-text {
  color: #000000;
  margin-block-end: 20px;
}

.exp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-start: 15px;
}

.exp-item .item-title {
  color: var(--text-majorelle-blue);
  font-size: 3.6rem;
  font-weight: var(--weight-bold);
}

.exp-shape {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 25%;
  filter: drop-shadow(var(--shadow-4));
}

/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta-card {
  background-color: var(--bg-misty-rose);
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--radius-30);
}

.cta .section-title .img {
  display: inline-block;
}

.cta .section-title {
  margin-block: 0 20px;
}

.cta .btn {
  margin-inline: auto;
  margin-block-start: 20px;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  display: grid;
  gap: 40px;
  padding-block: 60px;
}

.footer .logo img {
  width: 180px;
}

.footer-brand .footer-text {
  margin-block: 20px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  color: white;
  font-size: 2rem;
  padding: 10px;
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus-visible) {
  background-color: white;
  color: #222;
}

.footer-list-title {
  color: var(--text-gunmetal);
  font-size: var(--fontSize-5);
  font-weight: var(--weight-semiBold);
  margin-block-end: 15px;
}

.footer-link {
  margin-block-start: 10px;
}

.footer-link:is(:hover, :focus-visible) {
  text-decoration: underline;
}

.footer-list .footer-text {
  margin-block-end: 15px;
}

.input-field {
  height: 55px;
  padding-inline: 25px 60px;
  border: 1px solid var(--border-gainsboro);
  border-radius: var(--radius-pill);
  color: var(--text-gunmetal);
}

.input-wrapper {
  position: relative;
}

.input-field:focus {
  border-color: var(--bg-majorelle-blue);
}

.input-btn {
  width: 45px;
  height: 45px;
  background-color: var(--bg-majorelle-blue);
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  transition: var(--transition-1);
  color: var(--text-white);
}

.input-btn ion-icon {
  transform: translateX(-2px) rotate(45deg);
}

.input-btn:is(:hover, :focus-visible) {
  background-color: var(--bg-ocean-blue);
}

.footer-bottom {
  padding-block: 30px;
  border-block-start: 1px solid var(--border-gainsboro);
}

.copyright {
  margin-block-end: 20px;
}

.copyright-link {
  display: inline-block;
  color: var(--text-majorelle-blue);
  font-weight: var(--weight-medium);
}

.footer-bottom-link:is(:hover, :focus-visible) {
  text-decoration: underline;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  /**
   * HEADER
   */

  .navbar {
    padding-inline: 40px;
    padding-block-start: 40px;
  }

  /**
   * HERO
   */

  .hero-text {
    max-width: 42ch;
  }

  .hero .wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .hero .btn {
    margin-block-end: 0;
  }

  /**
   * SERVICE
   */

  .service .container {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }

  /**
   * DESTINATION
   */

  .desti-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * FOOTER
   */

  .footer-bottom-list {
    display: flex;
    gap: 30px;
  }

}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * TYPOGRAPHY
     */

    /* font size */
    --fontSize-1: 4.8rem;
    --fontSize-2: 4rem;
    --fontSize-3: 2.8rem;
    --fontSize-4: 2.6rem;
    --fontSize-5: 2.2rem;
    --fontSize-6: 1.8rem;
    --fontSize-7: 1.6rem;

    /**
     * SPACING
     */

    --section-spacing: 120px;

  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .btn {
    height: 60px;
    padding-inline: 40px;
  }

  .desti :is(.section-subtitle, .section-title) {
    text-align: center;
  }

  /**
   * PRELOADER
   */

  .preloader .img {
    width: 80px;
  }

  /**
   * HERO
   */

  .hero {
    padding-block-start: 180px;
  }

  .hero-subtitle {
    --fontSize-7: 1.8rem;
    padding: 10px 30px;
  }

  .hero-btn {
    gap: 32px;
  }

  .hero-btn .btn-img {
    width: 80px;
    height: 80px;
  }

  .hero-btn ion-icon {
    padding: 12px;
  }

  .hero-banner {
    max-width: 550px;
    margin-inline: auto;
  }

  /**
   * SERVICE
   */

  .service .container {
    gap: 35px;
  }

  .service-card {
    padding: 40px 30px;
  }

  .service-card .card-title {
    margin-block: 20px 10px;
  }

  /**
   * DESTINATION
   */

  .desti .section-title {
    margin-block-end: 65px;
  }

  .desti-list {
    gap: 50px 35px;
  }

  .desti-card .card-title {
    margin-block-start: 25px;
  }

  .desti .btn {
    margin-block-start: 60px;
  }

  /**
   * EXPERIENCE
   */

  .exp .section-text {
    max-width: 600px;
  }

  .exp-list {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .exp-item {
    gap: 15px;
  }

  .exp-item .item-title {
    font-size: 4rem;
  }

  .exp-banner {
    max-width: 550px;
    margin-inline: auto;
  }

  /**
   * CTA
   */

  .cta .section-title {
    max-width: 25ch;
    margin-inline: auto;
  }

}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 950px;
  }

  /**
   * HEADER
   */

  .nav-toggle-btn,
  .navbar-top,
  .overlay {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
    display: flex;
    align-items: center;
    flex-grow: 1;
  }

  .navbar-list {
    margin-block-start: 0;
    display: flex;
    gap: 30px;
    margin-inline: auto;
  }

  .navbar-link:is(:hover, :focus-visible, .active) {
    transform: unset;
  }

  .navbar-link::before {
    width: 10px;
    height: 3px;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-action {
    border: none;
    padding-block-start: 0;
    gap: 30px;
  }

  .header.scrolled .header-container {
    height: 60px;
  }

  .header.scrolled .navbar-blend {
    font-size: 0.9rem;
  }

  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 0.8fr 1fr;
    gap: 0;
    align-items: center;
  }

  .hero .wrapper {
    flex-wrap: wrap;
  }

  .hero-banner {
    max-width: unset;
    position: relative;
    top: -50px;
  }

  /**
   * SERVICE
   */

  .service .title-wrapper {
    padding-inline-end: 100px;
  }

  /**
   * DESTINATION
   */

  .desti-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * EXPERIENCE
   */

  .exp .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }

  .exp-content {
    order: 1;
  }

  .exp-list {
    flex-wrap: wrap;
  }

  .exp-item {
    margin-block-start: 0;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  /**
   * CTA
   */

  .cta .section-title {
    max-width: 25ch;
    margin-inline: auto;
  }

}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * TYPOGRAPHY
     */

    /* font size */
    --fontSize-1: 6.4rem;
    --fontSize-2: 4.8rem;
    --fontSize-3: 3rem;

  }

  /**
   * REUSED STYEL
   */

  .container {
    max-width: 1150px;
  }

  /**
   * HEADER
   */

  .header .logo img {
    width: 180px;
  }

  .header.scrolled .custom-icon {
    width: 160px;
    transition: all 0.3s ease;
  }

  .navbar-list {
    gap: 50px;
  }

  .header-action {
    gap: 40px;
  }

  /* Enhanced navbar hover effects for desktop */
  .navbar-link {
    position: relative;
    overflow: hidden;
  }

  .navbar-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    transition: width 0.3s ease;
  }

  .navbar-link:hover::before {
    width: 100%;
  }

  /**
   * HERO
   */

  .hero-title {
    margin-block: 30px;
  }

  .hero-text {
    margin-block-end: 50px;
  }

  /**
   * SERVICE
   */

  .service .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .service .title-wrapper {
    grid-column: span 3;
  }

  /**
   * DESTINATION
   */

  .desti-card .card-price {
    font-size: 2rem;
    padding: 8px 20px;
  }

  .desti-card .card-title {
    margin-block: 30px 10px;
  }

  .desti-card .card-rating {
    margin-block-start: 15px;
  }

  /**
   * EXPERIENCE
   */

  .exp .section-text {
    margin-block: 30px 40px;
  }

  .exp-list {
    gap: 50px;
  }

  /**
   * CTA
   */

  .cta-card {
    padding-block: 120px;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 0.5fr 0.6fr 0.6fr 1fr;
    gap: 60px;
  }

  .footer-brand .footer-text {
    margin-block: 35px 30px;
  }

  .footer-list-title {
    margin-block-end: 25px;
  }

  .footer-bottom-list {
    gap: 40px;
  }

}

/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * TYPOGRAPHY
     */

    /* font size */
    --fontSize-1: 7.2rem;

  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1350px;
  }

  /**
   * HEADER
   */

  .navbar-list {
    gap: 70px;
  }

  /**
   * SERVICE
   */

  .service .section-title {
    margin-block-end: 20px;
  }

  .service .title-wrapper {
    grid-column: auto;
    padding-inline-end: 0;
  }

  .service .container {
    grid-template-columns: 1fr repeat(3, 0.9fr);
    gap: 50px;
  }

  .service-card:nth-child(3) {
    margin-block-start: 80px;
  }

  /**
   * DESTINATION
   */

  .desti-list {
    gap: 50px;
  }

  /**
   * FOOTER
   */

  .footer-top {
    padding-block-end: 80px;
  }

}

.logo {
  font-size: 44px;
  color: rgb(65, 65, 65);
}

.logo-container {
  display: flex;
  align-items: center;
}


/*
    ================================
        Best Viewed In Full Page
    ================================
*/

/* Because I'm using the fixed position for modals, if the screen height is small then you would not be able to see a full modal that's why it's recommended that you see this pen in full-page and not on editor view. */

/* defaults */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  --light: hsl(220, 50%, 90%);
  --primary: hsl(255, 30%, 55%);
  --focus: hsl(210, 90%, 50%);
  --border-color: hsla(0, 0%, 100%, .2);
  --global-background: rgb(255, 255, 255);
  --background: linear-gradient(to right, hsl(210, 30%, 20%), hsl(255, 30%, 25%));
  --shadow-1: hsla(236, 50%, 50%, .3);
  --shadow-2: hsla(236, 80%, 23%, 0.4);

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', sans-serif;
  color: var(--light);
  background: var(--global-background);
}

a,
a:link {
  font-family: inherit;
  text-decoration: none;
}

a:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

/* box */
.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 4rem 2rem;
}

.box:not(:first-child) {
  height: 45rem;
}

.box__title {
  font-size: 10rem;
  font-weight: normal;
  letter-spacing: .8rem;
  margin-bottom: 2.6rem;
}

.box__title::first-letter {
  color: var(--primary);
}

.box__p,
.box__info,
.box__note {
  font-size: 1.6rem;
}

.box__info {
  margin-top: 6rem;
}

.box__note {
  line-height: 2;
}

/* modal */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  /* Hide modals by default */
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(220, 220, 220, 0.6);
}

/* Ensure this part is included */
.modal-container.active {
  display: flex;
  /* Show the modal when active */
}

.modal {
  width: 60rem;
  padding: 4rem 2rem;
  border-radius: .8rem;
  color: var(--light);
  background: var(--background);
  box-shadow: var(--m-shadow, .4rem .4rem 10.2rem .2rem) var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.modal__title {
  font-size: 3.2rem;
}

.modal__text {
  padding: 0 4rem;
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 2;
}

.modal__btn {
  margin-top: 4rem;
  padding: 1rem 1.6rem;
  border: 1px solid var(--border-color);
  border-radius: 100rem;
  color: inherit;
  background: transparent;
  font-size: 1.4rem;
  font-family: inherit;
  letter-spacing: .2rem;
  transition: .2s;
  cursor: pointer;
}

.modal__btn:nth-of-type(1) {
  margin-right: 1rem;
}

.modal__btn:hover,
.modal__btn:focus {
  background: var(--focus);
  border-color: var(--focus);
  transform: translateY(-.2rem);
}

/* link-... */
.link-1 {
  font-size: 1.8rem;
  color: var(--light);
  background: var(--background);
  box-shadow: .4rem .4rem 2.4rem .2rem var(--shadow-1);
  border-radius: 100rem;
  padding: 1.4rem 3.2rem;
  transition: .2s;
}

.link-1:hover,
.link-1:focus {
  transform: translateY(-.2rem);
  box-shadow: 0 0 4.4rem .2rem var(--shadow-2);
}

.link-1:focus {
  box-shadow: 0 0 4.4rem .2rem var(--shadow-2), 0 0 0 .4rem var(--global-background), 0 0 0 .5rem var(--focus);
}

.link-2 {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--border-color);
  border-radius: 100rem;
  color: inherit;
  font-size: 2.2rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

.link-2::before {
  content: '×';
  transform: translateY(-.1rem);
}

.link-2:hover,
.link-2:focus {
  background: var(--focus);
  border-color: var(--focus);
  transform: translateY(-.2rem);
}

.abs-site-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: hsla(0, 0%, 1000%, .6);
  font-size: 1.6rem;
}

.plan-trip-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  /* Match --z-fab token */
  background: rgba(17, 18, 20, 0.92);
  color: #ffffff;
  border: 1px solid rgba(212, 168, 87, 0.35);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.plan-trip-btn:hover {
  background: rgba(17, 18, 20, 0.96);
  border-color: rgba(212, 168, 87, 0.55);
  transform: translateX(-50%) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1.05);
  }

  100% {
    transform: translateX(-50%) scale(1.1);
  }
}

.plan-trip-btn.visible {
  opacity: 1;
  visibility: visible;
}

.icon-plane {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.plan-trip-btn:hover .icon-plane {
  transform: rotate(-10deg);
}

/* Existing styles remain unchanged */

.plan-trip-btn .btn-text {
  transition: opacity 0.3s ease;
}

.plan-trip-btn.open .btn-text {
  opacity: 0;
}

.plan-trip-btn.open::before,
.plan-trip-btn.open::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.plan-trip-btn.open::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.plan-trip-btn.open::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.trip-planner-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  padding: 0;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 1000;
}

.trip-planner-page.open {
  transform: translateY(0);
}

/* Existing styles remain unchanged */

.close-trip-planner-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10050;
  background: rgba(17, 18, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.close-trip-planner-btn:hover {
  border-color: rgba(212, 168, 87, 0.55);
  transform: scale(1.06);
}

.trip-planner-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  padding: 0;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.trip-planner-page.open {
  transform: translateY(0);
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--primary-color);
}

.tour-planner {
  flex: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.tour-planner-legacy h1 {
  font-size: 2em;
  margin-bottom: 42px;
  font-weight: bold;

}

.tour-planner-legacy .input-group {
  margin-bottom: 30px;
}

.tour-planner-legacy label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.tour-planner-legacy input[type="date"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #000000 !important;
  border-radius: 14px;
  font-size: 16px;
  color: #000000;
  background-color: #ffffff;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}

.tour-planner-legacy input[type="date"]:focus {
  outline: none;
  border-color: #000000 !important;
}

.tour-planner-legacy input[type="date"]:hover {
  border-color: #000000 !important;
}

.tour-planner-legacy input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.tour-planner-legacy input[type="date"]::placeholder {
  color: #000000;
}

.flatpickr-input {
  width: 100% !important;
  padding: 12px !important;
  border: 2px solid #000000 !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  height: 50px;
}

.flatpickr-input:hover,
.flatpickr-input:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}

.flatpickr-input::-webkit-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}

.datetime-picker {
  width: 100%;
  height: 50px;
  padding: 10px 12px;
  border: 2px solid #000000;
  border-radius: 12px;
  font-size: 16px;
  color: #000000;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.datetime-picker:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.datetime-picker:hover {
  border-color: #000000;
  /* Consistent border color on hover */
}

.datetime-picker::placeholder {
  color: #999999;
  /* Placeholder text color */
}

.flatpickr-calendar {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flatpickr-month {
  font-size: 1rem;
  font-weight: 600;
}

.flatpickr-day {
  font-size: 0.875rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
}

.flatpickr-time input {
  width: 3rem;
  height: 2.5rem;
  padding: 0;
  text-align: center;
}

.flatpickr-time {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* Flatpickr Calendar Styles */
.flatpickr-calendar {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Customize Time Picker to Simulate Scrollable Wheels */
.datetime-picker::-webkit-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}

.tour-planner-legacy select,
.tour-planner-legacy input[type="date"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #000000;
  border-radius: 14px;
  font-size: 16px;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 50px;
}

.tour-planner-legacy select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 1em;
}

.tour-planner-legacy select:focus,
.tour-planner-legacy input[type="date"]:focus {
  outline: none;
  border-color: #000000;
}

.destinations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.destination-item {
  position: relative;
}

.destination-item input[type="checkbox"] {
  display: none;
}

.destination-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 50px;
  height: 40px;
  font-size: 16px;
}

.destination-item input[type="checkbox"]:checked+label {
  background-color: #000000;
  color: rgb(255, 255, 255);
}

.destination-description {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 0, 0);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  width: max-content;
  max-width: 200px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.675);
  backdrop-filter: blur(5px);
  border: 0.5px solid #4c4c4c;
}

.destination-item label:hover+.destination-description {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 12px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 700;
}

.btn:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .tour-planner-legacy {
    padding: 20px;
    margin: 20px;
  }

  body {
    background-color: #ffffff;
    /* Ensure background is white */
  }

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 1em;
  }

  .tour-planner-legacy .input-group input[type="text"],
  .tour-planner-legacy input[type="date"],
  .tour-planner-legacy select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  .package-card {
    width: 100%;
    max-width: 310px;
  }

  .navbar {
    width: 100%;
    right: 0;
  }

  .navbar.active {
    transform: translateX(0);
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .desti-list {
    grid-template-columns: 1fr;
  }

  .datetime-picker {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }

  .package-toggle-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  .flatpickr-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}

/* Timezone Indicator Styles */
.timezone-indicator {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #555555;
}

.timezone-indicator strong {
  color: #000000;
}

.tour-planner-legacy .datetime-container {
  position: relative;
}

.tour-planner-legacy .datetime-picker {
  padding-right: 60px;
  /* Adjust this value to accommodate the timezone label */
}

.tour-planner-legacy .timezone-label {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #000000;
  pointer-events: none;
  display: none;
  /* Initially hide the labels */
}

.tour-planner-legacy .input-group {
  margin-bottom: 20px;
}

.tour-planner-legacy label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.tour-planner-legacy .datetime-container {
  position: relative;
}

.tour-planner-legacy .datetime-picker {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.tour-planner-legacy .timezone-label {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.package-toggle-btn {
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  height: 50px;
  transition: border-color 0.3s ease;
}

.package-toggle-btn:focus {
  outline: none;
  border-color: #000000;
}

.package-cards {
  display: flex;
  overflow-x: auto;
  padding: 20px 0;
  gap: 20px;
  margin-bottom: 20px;
}

.package-card {
  flex: 0 0 auto;
  background-color: white;
  max-height: 1000px;
  max-width: 310px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: transform 0.1s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.package-card:hover {
  transform: scale(1.03);
}

.package-name {
  margin-top: 0;
  font-size: 2em;
  color: #000000;
  word-wrap: break-word;
  font-weight: bold;
  margin-bottom: 0;
}

.package-price {
  font-size: 1em;
  font-weight: 500;
  font-style: italic;
  color: #000000;
  margin-top: 0;
}

.package-description {
  font-size: 1em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.package-features {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
}

.package-feature-item {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  word-break: break-word;
  margin-bottom: 20px;
}

.package-feature-item::before {
  content: '✓';
  color: #000000;
  margin-right: 10px;
  flex-shrink: 0;
}

.select-btn,
.submit-btn {
  width: 100%;
  padding: 10px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  margin-top: auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Ensure the modal is on top */
  backdrop-filter: blur(20px);
}

.modal-content {
  background: transparent;
  padding: 20px;
  border-radius: 12px;
  max-width: 100%;
  /* Adjusted to reduce excess space */
  width: 90%;
  /* Adjusted to reduce excess space */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* Center the content horizontally */
  backdrop-filter: blur(15px);
}

.close-btn {
  position: absolute;
  top: 2px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.package-cards-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1500px;
  background-color: transparent;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  justify-content: center;
  /* Center the cards within the container */
}

.package-card {
  background: transparent;
  padding: 15px;
  border-radius: 18px;
  min-width: 370px;
  height: 650px;
  width: 100%;
  flex: 0 0 auto;
  border: none;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

.tour-planner-legacy .input-group input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #000000;
  border-radius: 14px;
  font-size: 16px;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 50px;
}

.tour-planner-legacy .input-group input[type="text"]:focus {
  outline: none;
  border-color: #000000;
}

.tour-planner-legacy .input-group input[type="text"]::placeholder {
  color: #999999;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 18px;
  /* Increased base font size */
}

.section.why-tripsto {
  background-color: #ffffff;
  color: #000000;
  padding: 6rem 0;
  /* Increased padding */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  /* Increased padding */
}

.section-title {
  text-align: center;
  color: #000000;
  font-size: 2.9rem;
  margin-bottom: 3rem;
}

.why-tripsto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 768px) {
  .why-tripsto-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.why-tripsto-item {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 14px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.why-tripsto-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-tripsto-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.icon-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.why-tripsto-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  margin-top: none;
  margin-right: 20px;
  filter: grayscale(100%);
}

.item-title {
  margin: 10;
  font-size: 4rem;
  margin-bottom: 5px;
  margin-left: 1px;
  font-weight: bolder;
  line-height: 1.4;
}

.item-text {
  font-size: 2rem;
  font-weight: 550;
  line-height: 2;
  color: #000000;
  margin-top: 10px;
}

.why-tripsto .section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.why-tripsto-item .item-title {
  font-size: 2.7rem;
  /* Increase the font size for the title */
}

.why-tripsto-item .item-text {
  font-size: 1.6rem;
  color: #5e5e5e;
  /* Increase the font size for the text */
}

#top-destinations {
  background-color: #ffffff;
  padding: 4rem 0;
}

#top-destinations .container {
  max-width: 1400px;
  margin: 0 auto;
}

#top-destinations .section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

#top-destinations .section-title {
  text-align: center;
  color: #000000;
  font-size: 2.9rem;
  margin-bottom: 3rem;
}

#destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.desti-item {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.desti-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.icon-title-wrapper {
  position: relative;
  overflow: hidden;
}

.desti-icon {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.desti-item:hover .desti-icon {
  transform: scale(1.05);
}

.item-title {
  font-size: 1.5rem;
  margin: 1rem;
  color: #000000;
}

.item-text {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0 1rem 1rem;
}

.card-rating {
  display: flex;
  align-items: center;
  margin: 0 1rem 1rem;
}

.card-rating ion-icon {
  color: #ad9417;
  font-size: 1.2rem;
}

.card-rating span {
  font-weight: bold;
  margin-left: 0.5rem;
  color: #343a40;
}

.rating-text {
  font-size: 0.8rem;
  color: #6c757d;
  margin-left: 0.5rem;
}

@media (max-width: 992px) {
  #destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #destinations-grid {
    grid-template-columns: 1fr;
  }

  /* Improved text sizing for mobile */
  :root {
    --fontSize-1: 3.2rem;
    --fontSize-2: 2.8rem;
    --fontSize-3: 2.2rem;
    --fontSize-4: 2rem;
    --fontSize-5: 1.8rem;
    --fontSize-6: 1.5rem;
    --fontSize-7: 1.4rem;
  }

  /* Improve spacing and layout on mobile */
  .header-container {
    padding: 0 15px;
  }

  /* Mobile navbar transparency and scroll states */
  .header .header-container {
    height: 70px;
    padding: 0 20px;
  }

  .header.scrolled .header-container {
    height: 56px;
  }

  .header.scrolled .custom-icon {
    width: 140px;
  }

  /* Mobile menu button styling */
  .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    transition: all 0.3s ease;
  }

  .header.scrolled .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .logo-container {
    max-width: 120px;
  }

  .custom-icon {
    height: auto;
    width: 100%;
    max-height: 30px;
  }

  /* Fix section spacing for mobile */
  .section {
    padding-inline: 10px;
  }

  /* Adjust hero section for better mobile display */
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

/* Fluid animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.desti-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.desti-item:nth-child(1) {
  animation-delay: 0.1s;
}

.desti-item:nth-child(2) {
  animation-delay: 0.2s;
}

.desti-item:nth-child(3) {
  animation-delay: 0.3s;
}

.desti-item:nth-child(4) {
  animation-delay: 0.4s;
}

.desti-item:nth-child(5) {
  animation-delay: 0.5s;
}

.desti-item:nth-child(6) {
  animation-delay: 0.6s;
}

.section.testimonials {
  background-color: #ffffff;
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  margin-bottom: 1.5rem;
}

.rating-stars {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.review-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.testimonial-text {
  position: relative;
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.6;
  max-height: 4.8rem;
  /* 3 lines of text */
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 1.5rem;
}

.testimonial-text.expanded {
  max-height: 1000px;
}

.read-more {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(to left, #fff 40%, transparent);
  padding: 0 20px;
  color: #0e67af;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.7s ease;
}

.read-more:hover {
  color: #439eff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.testimonial-photo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-item {
    padding: 2rem;
  }
}

/* Add this CSS for modern stars */
.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.8rem;
}

.star {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #7c7c7c;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-item:hover .star {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* For 4-star reviews (like Marta's review), add this class to the rating-stars div */
.rating-stars.four-stars .star:last-child {
  background: linear-gradient(45deg, #e0e0e0, #d0d0d0);
}

.testimonials .section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}


.footer {
  background-color: #f5f5f5;
  /* Light grey background instead of green */
  color: var(--text-dark);
  /* Dark text color */
  padding: 60px 0 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand p {
  color: #718096;
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #3b82f6;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #e2e8f0;
  color: #4a5568;
  transition: all 0.2s;
}

.social-icons a:hover {
  background-color: #3b82f6;
  color: white;
}

.social-icons ion-icon {
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #a0aec0;
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    align-items: center;
  }
}

/* About Page Styles */

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/hero-banner.png') center/cover no-repeat;
  padding: 150px 0 100px;
  text-align: center;
  color: white;
}

.about-hero .hero-title {
  color: white;
  margin-bottom: 20px;
  font-size: 3.5rem;
}

.about-hero .hero-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.story {
  padding: 80px 0;
  background-color: var(--bg-misty-rose);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.features {
  padding: 80px 0;
  background-color: white;
}

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

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-20);
  background-color: var(--bg-misty-rose);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  color: var(--text-majorelle-blue);
  margin-bottom: 20px;
}

.card-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card-text {
  color: var(--text-granite-gray);
  font-size: 1rem;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero .hero-title {
    font-size: 2.5rem;
  }

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

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .member-image {
    width: 150px;
    height: 150px;
  }
}

/* Elegant White Section */
.elegant-white {
  background-color: #ffffff;
  /* White background */
  padding: 60px 0;
  /* Adequate spacing */
  text-align: center;
}

.elegant-white .title {
  font-size: 2.5rem;
  color: var(--text-gunmetal);
  margin-bottom: 20px;
}

.elegant-white .section-text {
  font-size: 1.2rem;
  color: var(--text-granite-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Story Section */
.story {
  background-color: #f9f9f9;
  /* Light grey background */
  padding: 60px 0;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-content .section-text {
  font-size: 1.1rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
}

/* Features Section */
.features {
  background-color: #ffffff;
  padding: 60px 0;
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 40px;
  color: var(--text-majorelle-blue);
  margin-bottom: 20px;
}

.card-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card-text {
  color: var(--text-granite-gray);
  font-size: 1rem;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #323232;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

/* Header */
.header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-bottom: none;
  padding: 30px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  /* Increased logo size */
  font-weight: 600;
  color: var(--primary-color);
  margin-left: 10px;
}

.navbar {
  display: flex;
  justify-content: flex-end;
}

.navbar-list {
  display: flex;
  gap: 40px;
  /* Increased gap between nav items */
  list-style: none;
}

.navbar-link {
  font-size: 1.3rem;
  /* Increased font size */
  font-weight: 500;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-majorelle-blue);
  /* Changed to purple instead of brown */
  transition: var(--transition);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

/* Elegant White Section */
.elegant-white {
  background-color: #ffffff;
  padding: 100px 0;
  /* Increased padding for more space */
  text-align: center;
}

.elegant-white .title {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
}

.elegant-white .section-text {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Story Section */
.story {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content .section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.story-content .section-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* Features Section */
.features {
  background-color: #ffffff;
  padding: 80px 0;
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 50px;
  color: #007bff;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.card-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Footer */
.footer {
  background-color: #f5f5f5;
  /* Light grey background instead of green */
  color: var(--text-dark);
  /* Dark text color */
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  /* Matching site color scheme */
}

.footer-tagline {
  color: var(--text-light);
  /* Lighter text color */
}

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

.footer-links a {
  color: var(--text-light);
  /* Lighter text color */
}

.footer-links a:hover {
  color: var(--text-majorelle-blue);
  /* Purple on hover */
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  /* Very light grey background */
  border-radius: 50%;
  color: var(--text-dark);
  /* Dark icon color */
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--text-majorelle-blue);
  /* Purple background on hover */
  color: white;
  /* White icon on hover */
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Light border */
  text-align: center;
  color: var(--text-light);
  /* Lighter text color */
  font-size: 0.9rem;
}

/* Modern About Page Styles */

/* Reset and Base Styles */
:root {
  --primary-color: #2d5f5d;
  --secondary-color: #a67f5d;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #ffffff;
  --bg-off-white: #f8f8f8;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.container.full-width {
  max-width: none;
  width: 100%;
  padding: 0 20px;
}

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

p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0 auto 30px;
}

.section-header {
  margin-bottom: 50px;
}

/* Header */
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-light);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 1rem;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  /* no height here—your img can be any size */
}

.custom-icon {
  width: 180px;
  height: 180px;
  display: block;
  margin-left: 80px;
  margin-right: 10px;
}



/* Hero Section */
.hero-section {
  background-color: var(--bg-light);
  padding: 150px 0 80px;
  text-align: center;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: var(--text-light);
}

/* Story Section */
.story-section {
  background-color: var(--bg-off-white);
  padding: 80px 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

/* Values Section */
.values-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

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

.value-card {
  background-color: var(--bg-off-white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.value-description {
  font-size: 1rem;
  color: var(--text-light);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .story-content {
    flex-direction: column;
  }

  .story-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

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

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

  .swiper-slide {
    width: 300px;
    height: 200px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-links {
    flex-direction: row;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .navbar-list {
    gap: 20px;
  }

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

/* About Page Style Overrides */
.header {
  padding-block: 30px !important;
  position: fixed !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: none;
  border-bottom: none;
  box-shadow: none;
  animation: slideInDown 0.3s ease-out;
}

/* Force glassy scrolled state override (wins over transparent !important) */
.header.scrolled {
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  background-clip: padding-box !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12) !important;
  animation: slideInDown 0.3s ease-out !important;
}

.header-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.logo {
  font-size: 2.4rem !important;
  color: var(--text-gunmetal) !important;
}

.navbar-list {
  display: flex !important;
  gap: 40px !important;
  margin-block-start: 0 !important;
  margin-top: 0 !important;
}

.navbar-link {
  font-size: 1.7rem !important;
  position: relative !important;
  padding-block: 8px !important;
}

/* Override for underline - ONLY purple */
.navbar-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: -5px !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background-color: var(--text-majorelle-blue) !important;
  /* Purple ONLY */
  transition: all 0.3s ease !important;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 0% !important;
}

/* Light Footer Overrides */
.footer {
  background-color: #f5f5f5 !important;
  /* Light grey */
  color: var(--text-gunmetal) !important;
}

.footer-logo {
  color: var(--text-gunmetal) !important;
}

.footer-tagline {
  color: var(--text-granite-gray) !important;
}

.footer-links a {
  color: var(--text-granite-gray) !important;
}

.footer-links a:hover {
  color: var(--text-majorelle-blue) !important;
}

.footer-social a {
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: var(--text-granite-gray) !important;
}

.footer-social a:hover {
  background-color: var(--text-majorelle-blue) !important;
  color: white !important;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: var(--text-granite-gray) !important;
}

/* Contact Page Styles */
.contact-hero {
  background-color: var(--bg-light);
  padding: 150px 0 80px;
  text-align: center;
}

.contact-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.contact-info {
  background-color: var(--bg-off-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.info-card {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--text-majorelle-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--bg-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
  background-color: var(--text-majorelle-blue);
  color: white;
  transform: translateY(-5px);
}

.contact-form-wrapper {
  padding: 40px;
  border-radius: 12px;
  background-color: white;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--text-majorelle-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 29, 253, 0.1);
}

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

.map-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-wrapper {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 60px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .info-card {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {

  .contact-form-wrapper,
  .contact-info {
    padding: 25px;
  }
}

/* Modern clickable contact cards */
.info-card.clickable {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  padding: 20px;
  margin: -20px;
  margin-bottom: 10px;
}

.info-card.clickable:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.info-card.clickable:active {
  transform: translateY(-2px);
}

.contact-link {
  color: var(--text-majorelle-blue);
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--bg-ocean-blue);
  text-decoration: underline;
}

.click-action {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-majorelle-blue);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.info-card.clickable:hover .click-action {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced map container */
.map-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
}

.map-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Make the info-icon more interactive */
.info-icon {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-card.clickable:hover .info-icon {
  transform: scale(1.1);
  background-color: var(--bg-ocean-blue);
}

/* TripAdvisor icon styling */
.tripadvisor-icon ion-icon {
  color: inherit;
  font-size: 1.1em;
}

.tripadvisor-icon::before {
  content: "TA";
  position: absolute;
  font-size: 0.65em;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.social-links .tripadvisor-icon,
.footer-social .tripadvisor-icon {
  position: relative;
}

/* Improved TripAdvisor icon styling */
.tripadvisor-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tripadvisor-icon::before,
.tripadvisor-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: currentColor;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.tripadvisor-icon::before {
  left: calc(50% - 7px);
}

.tripadvisor-icon::after {
  right: calc(50% - 7px);
}

.tripadvisor-icon ion-icon {
  font-size: 1.4em;
  visibility: hidden;
}

/* Add circular border around the "eyes" */
.tripadvisor-icon span {
  position: absolute;
  width: 100%;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 6px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* TripAdvisor Font Awesome icon styling */
.fa-tripadvisor {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Adjust size in the footer */
.footer-social .fa-tripadvisor {
  font-size: 1.4em;
}

/* Remove the previous TripAdvisor styling that's no longer needed */
.tripadvisor-icon::before,
.tripadvisor-icon::after,
.tripadvisor-icon span {
  display: none;
}

/* Fix TripAdvisor icon alignment in circular containers */
.social-links a,
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Adjust Font Awesome TripAdvisor icon size and positioning */
.fa-tripadvisor {
  font-size: 1.3em !important;
  line-height: 1;
  position: relative;
  top: 1px;
}

/* Size adjustment for footer */
.footer-social .fa-tripadvisor {
  font-size: 1.5em !important;
}

/* Ensure proper vertical centering */
.social-links a i,
.footer-social a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Make the TripAdvisor icon in footer smaller to match other icons */
.footer-social .fa-tripadvisor {
  font-size: 1.2em !important;
  /* Reduced from 1.5em */
  position: relative;
  top: 0;
  /* Adjust vertical alignment */
}

/* Adjust centering specifically for footer */
.footer-social a i.fa-tripadvisor {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* Tour Modal Styles - Modern & Elegant Redesign */
.tour-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.tour-modal.show {
  opacity: 1;
}

.tour-modal-content {
  background-color: #fff;
  margin: 5vh auto;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-40px) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tour-modal.show .tour-modal-content {
  transform: translateY(0) scale(1);
}

.tour-modal-scroll-container {
  flex: 1;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.tour-modal-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.tour-modal-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.tour-modal-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

/* 1. Header Section - Elegant styling */
.tour-header {
  background-color: #fff;
  position: relative;
}

.tour-header-content {
  padding: 35px 35px 25px;
}

.tour-header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tour-subtitle {
  font-size: 18px;
  color: var(--text-slate-gray);
  margin-bottom: 15px;
  font-weight: 500;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-stars {
  display: flex;
}

.star {
  color: #e0e0e0;
  font-size: 20px;
  transition: color 0.3s ease;
}

.star.filled {
  color: #ffb30057;
}

.tour-header-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.tour-header-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none;
}

.tour-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tour-header-image:hover img {
  transform: scale(1.03);
}

/* Tour Sections - Modern styling */
.tour-section {
  padding: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section-title {
  font-size: 22px;
  color: var(--text-gunmetal);
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50px;
  background-color: white;
  border-radius: 3px;
}

/* 2. Places Slider - Modern & Smooth */
.places-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
  margin: 0 -10px;
}

.places-slider {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 -10px;
  padding: 10px 0;
}

.place-item {
  flex: 0 0 180px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

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

.place-image {
  width: 100%;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.place-image:hover img {
  transform: scale(1.1);
}

.place-name {
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  color: #ffffff;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s ease;
}

.slider-nav:hover {
  background-color: var(--bg-majorelle-blue);
  color: white;
  box-shadow: 0 5px 15px rgba(var(--bg-majorelle-blue-rgb), 0.3);
}

.slider-nav.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.slider-nav.prev {
  left: 5px;
}

.slider-nav.next {
  right: 5px;
}

/* 3. Highlights - Minimal styling */
.highlights-list {
  padding-left: 20px;
}

.highlights-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  color: var(--text-slate-gray);
}

.highlights-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
  box-shadow: 0 0 0 2px rgba(var(--bg-majorelle-blue-rgb), 0.2);
}

/* 4. Itinerary - Elegant toggle styling */
.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.itinerary-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.itinerary-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.itinerary-item.active {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.itinerary-toggle {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
}

.itinerary-toggle:hover {
  background-color: rgba(var(--bg-majorelle-blue-rgb), 0.03);
}

.itinerary-item.active .itinerary-toggle {
  background-color: rgba(var(--bg-majorelle-blue-rgb), 0.06);
}

.day-number {
  font-weight: 700;
  color: #000000;
  margin-right: 15px;
  flex: 0 0 60px;
  font-size: 15px;
}

.day-title {
  flex: 1;
  font-weight: 500;
  color: var(--text-gunmetal);
}

.toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.toggle-icon span {
  position: absolute;
  background-color: #555;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-icon span:first-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.toggle-icon span:last-child {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.itinerary-item.active .toggle-icon span:last-child,
.included-item.active .toggle-icon span:last-child {
  height: 0;
}

.itinerary-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  background-color: #fff;
  line-height: 1.6;
  color: var(--text-slate-gray);
}

.itinerary-item.active .itinerary-content {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* 5. What's Included - Elegant toggle styling */
.included-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.included-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.included-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.included-item.active {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.included-toggle {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.included-toggle:hover {
  background-color: rgba(var(--bg-majorelle-blue-rgb), 0.03);
}

.included-item.active .included-toggle {
  background-color: rgba(var(--bg-majorelle-blue-rgb), 0.06);
}

.included-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: background-color 0.3s ease;
}

.included-item:hover .included-icon {
  background-color: #eee;
}

.included-item.active .included-icon {
  background-color: rgba(var(--bg-majorelle-blue-rgb), 0.2);
}

.included-icon ion-icon {
  color: #555;
  font-size: 20px;
}

.included-category {
  flex: 1;
  font-weight: 500;
  color: var(--text-gunmetal);
}

.included-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  background-color: #fff;
  line-height: 1.6;
  color: var(--text-slate-gray);
}

.included-item.active .included-content {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Footer - Modern styling */
.tour-modal-footer {
  padding: 22px 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.tour-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-gunmetal);
}

.tour-btn {
  display: inline-block;
  background-color: var(--bg-majorelle-blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(var(--bg-majorelle-blue-rgb), 0.3);
}

.tour-btn:hover {
  background-color: var(--bg-ocean-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--bg-majorelle-blue-rgb), 0.4);
}

.tour-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tour-modal-close:hover {
  background-color: #fff;
  transform: rotate(90deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.tour-modal-close::before,
.tour-modal-close::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
}

.tour-modal-close::before {
  transform: rotate(45deg);
}

.tour-modal-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .tour-modal-content {
    width: 95%;
    margin: 3vh auto;
  }

  .tour-header-content {
    padding: 25px 25px 15px;
  }

  .tour-header h2 {
    font-size: 24px;
  }

  .tour-header-image {
    height: 250px;
  }

  .tour-section {
    padding: 25px;
  }

  .place-item {
    flex: 0 0 150px;
  }

  .place-image {
    height: 100px;
  }

  .tour-modal-footer {
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
  }

  .tour-price {
    font-size: 20px;
  }
}