/* Kerala Tourism - Enhanced Styles
-------------------------------------------------- */

/* Root Variables with Improved Organization */
:root {
  /* Primary Colors */
  --primary-yellow: #f8c423; /* Kerala spice and sunshine */
  --primary-orange: #f29e1f; /* Kerala sunset and culture */
  --primary-dark: #191919; /* Text and contrast elements */
  --primary-green: #2a6e3f; /* Kerala backwaters and forests */
  --primary-blue: #1a5f7a; /* Kerala coastal waters */

  /* Accent Colors */
  --accent-white: #ffffff; /* Text & contrast elements */
  --accent-black: #000000; /* High contrast text */
  --accent-light-gray: #e0e0e0; /* Subtle borders or dividers */
  --accent-teal: #2a9d8f; /* Backwater highlights */
  --accent-red: #e63946; /* Cultural festival accents */

  /* Brand/Logo Colors */
  --brand-red: #cc1c1c; /* Lavishvista text/logo */
  --brand-gold: #d9aa00; /* Package price highlight */
  --brand-blue: #0077b5; /* LinkedIn icon */
  --brand-instagram: #e1306c; /* Instagram icon */
  --brand-facebook: #1877f2; /* Facebook icon */
  --brand-whatsapp: #25d366; /* WhatsApp icon */

  /* Theme-Specific Colors */
  --cultural-primary: #d9534f; /* Cultural theme primary color */
  --cultural-secondary: #f0ad4e; /* Cultural theme secondary color */
  --travel-primary: #5bc0de; /* Travel theme primary color */
  --travel-secondary: #5cb85c; /* Travel theme secondary color */
  --wildlife-primary: #f0ad4e; /* Wildlife theme primary color */
  --wildlife-secondary: #8a6d3b; /* Wildlife theme secondary color */

  /* Additional */
  --overlay-yellow: rgba(248, 196, 35, 0.8); /* Hover overlays */
  --overlay-green: rgba(42, 110, 63, 0.8); /* Nature overlays */
  --overlay-blue: rgba(26, 95, 122, 0.8); /* Water overlays */
  --highlight-shadow: rgba(0, 0, 0, 0.3); /* Shadows */

  /* Animation durations */
  --leaf-animation-duration: 15s;
  --water-ripple-duration: 8s;
  --boat-float-duration: 6s;
  --card-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --primary-yellow: #ffc107;
  --primary-green: #2e7d32;


  --background-color: #f0f8f7;
  --text-color: #333;
  --card-bg: #fff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --animation-duration: 0.8s;
  --trunk-width: 12px;
  --branch-width: 6px;
  --dot-size: 16px;
  --card-width: 240px;


}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--primary-dark);
  overflow-x: hidden;
  background-color: var(--accent-white);
  width: 100%;
  max-width: 100vw;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* -------------------------------------------------- 
   Typography
   -------------------------------------------------- */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  align-self: center;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-yellow);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--overlay-yellow);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* -------------------------------------------------- 
   Buttons
   -------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
  color: white;
  box-shadow: 0 4px 15px var(--highlight-shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--highlight-shadow);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  box-shadow: 0 4px 15px rgba(242, 158, 31, 0.1);
}

.btn-secondary:hover {
  background-color: var(--primary-orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 158, 31, 0.2);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
  color: white;
  width: 100%;
  padding: 0.75rem;
  box-shadow: 0 4px 15px var(--highlight-shadow);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--highlight-shadow);
}

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

#heroVideo {
  margin-left: -20%;

  width: 120%;
  height: 120%;
  object-fit: cover;
  position: relative;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 20, 25, 0.3), rgba(25, 20, 25, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Hero Header Styles */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0); /* Transparent */
  transition: background-color 0.3s ease;
  z-index: 800; /* Ensure it stays on top */
  padding: 10px 20px; /* Add some padding */
  gap:1.5rem;
}
/* Header Container */
.header-container {
  display: flex;
  justify-content: space-between ;/* Space between logo and nav */
  align-items: center; /* Center vertically */
}
/* Change opacity when scrolled */
.hero-header.scrolled {
  background-color: rgba(0, 0, 0, 0.8); /* Slightly opaque */
}


.logo {
  height: clamp(50px, 15vw, 80px);
  filter: drop-shadow(0 2px 4px var(--highlight-shadow));
}



.main-nav {
  display: flex;
  justify-content:space-between;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .main-nav.active {
    display: flex; 
     /*Show nav links when active */
  }
}

@media (max-width: 768px) {
    main-nav{
        display:none;
    }
}

.nav-link {
  color: var(--accent-white);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-yellow);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-yellow);
}

.nav-link:hover::after {
  width: 100%;
}

.hero-text {
  margin-top: clamp(10%, 20vw, 20%);
  text-align: center;
  color: white;
  margin-bottom: 6rem;
}

.hero-text h1,
.hero-text p {
  text-shadow: 0 2px 8px var(--highlight-shadow);
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  animation: fadeInDown 1.2s ease-out;
  color: var(--accent-white);
}

.hero-text p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-text .btn {
  animation: fadeIn 1.2s ease-out 0.6s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* -------------------------------------------------- 
   Story Section - Cultural Theme
   -------------------------------------------------- */
/* Basic reset and layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {

}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  height: 100vh;
  overflow-x: hidden;
}

.story-section {
  height: 100vh;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.story-container {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.story-header {
  text-align: center;
  margin-bottom: 20px;
}

.story-header h2 {
  font-size: 2rem;
  color: var(--primary-yellow);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

/* .story-header h2::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: var(--primary-yellow);
  bottom: -6px;
  left: 0%;
  border-radius: 2px;
} */

.story-header p {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.4;
}

/* Tree timeline structure */
.story-tree-timeline {
  position: relative;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0;
  min-height: 0;
}

.tree-trunk {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 90%;
  width: var(--trunk-width);
  background: linear-gradient(to bottom, var(--primary-dark), var(--primary-green));
  bottom: 0;
  z-index: 1;
  border-radius: 6px;
}

/* Tree Branch */
.tree-branch {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 60px;
  z-index: 2;
  margin: 10px 0;
}

.branch-right {
  justify-content: flex-end;
  padding-right: calc(50% + 20px);
  transform: translateY(-10px) rotate(10deg);
}

.branch-left {
  justify-content: flex-start;
  padding-left: calc(50% + 20px);
  transform: translateY(-10px) rotate(-10deg);
}

.branch-dot {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background-color: var(--primary-green);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.branch-line {
  width: 100px;
  height: var(--branch-width);
  background: linear-gradient(to right, var(--primary-dark), var(--primary-green));
  position: absolute;
  top: 50%;
  z-index: 2;
  transform-origin: left center;
}

.branch-right .branch-line {
  right: 50%;
  transform: rotate(-10deg);
}

.branch-left .branch-line {
  left: 50%;
  transform: rotate(10deg);
}

/* Branch content */
.branch-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--animation-duration) ease;
  max-width: var(--card-width);
  position: relative;
}

/* Timeline cards */
.timeline-card {
  background-color: var(--card-bg);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px var(--shadow-color);
  width: 100%;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-yellow);
}

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

.timeline-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: inline-block;
}

.timeline-year {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  background-color: rgba(46, 125, 50, 0.1);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.1rem;
  color: var(--primary-yellow);
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

/* Leaf styles */
.branch-leaf {
  width: 10px;
  height: 10px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  position: absolute;
  animation: floatLeaf 4s ease-in-out infinite;
  z-index: 1;
  opacity: 0.8;
}

@keyframes floatLeaf {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translate(var(--float-x, 100px), var(--float-y, -200px)) rotate(360deg);
    opacity: 0;
  }
}

/* Call to Action Button */
.story-cta {
  margin-top: 20px;
  z-index: 2;
}

.cta-button {
  background-color: var(--brand-gold);
  color: #333;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 3px 8px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(255, 193, 7, 0.4);
}

/* Animations */
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .tree-trunk {
    left: 20px;
    transform: none;
  }
  
  .tree-branch {
    justify-content: flex-start;
    padding-left: 40px !important;
    padding-right: 15px !important;
    transform: none !important;
    margin: 15px 0;
  }
  
  .branch-dot {
    left: 20px;
  }
  
  .branch-line {
    width: 40px !important;
    transform: none !important;
    left: 28px !important;
  }
  
  .timeline-card {
    max-width: calc(100% - 30px);
  }
  
  .story-header h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
    
  .main-nav{
      display:none;
  }
  
  .hero-header{
    display:flex;
    justify-content:space-between;
    align-items: center;
  }
  .story-section {
    padding: 15px;
  }
  
  .timeline-card {
    padding: 12px;
  }
  
  .timeline-title {
    font-size: 1rem;
  }
  
  .story-header h2 {
    font-size: 1.4rem;
  }
  
  .timeline-text {
    font-size: 0.85rem;
  }
  
  .cta-button {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}
  
  /* Call to Action Button */
  .story-cta {
    margin-top: 30px;
    z-index: 2;
  }
  
  .cta-button {
    background-color: var(--brand-gold);
    color: #333;
    font-weight: 600;
    padding: 12px 28px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
  }
  
  .cta-button:hover {
    background-color: #ffb300;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
  }
  
  /* Animations */
  .animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .story-header h2 {
      font-size: 2.2rem;
    }
    
    .branch-right, .branch-left {
      padding-right: 20px;
      padding-left: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .tree-trunk {
      left: 20px;
      transform: none;
    }
    
    .tree-branch {
      justify-content: flex-start;
      padding-left: 50px !important;
      padding-right: 20px !important;
      transform: none !important;
    }
    
    .branch-dot {
      left: 20px;
    }
    
    .branch-line {
      width: 60px !important;
      transform: none !important;
      left: 30px !important;
    }
    
    .timeline-card {
      max-width: calc(100% - 40px);
    }
    
    .story-header h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .story-section {
      padding: 20px 15px;
    }
    
    .timeline-card {
      padding: 15px;
    }
    
    .timeline-title {
      font-size: 1.2rem;
    }
    
    .story-header h2 {
      font-size: 1.6rem;
    }
    
    .timeline-text {
      font-size: 0.9rem;
    }
    
    .cta-button {
      padding: 10px 20px;
      font-size: 1rem;
    }
  }




  


/* -------------------------------------------------- 
   Testimonials Section
   -------------------------------------------------- */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,50 L20,30 L40,50 L60,20 L80,40 L100,30' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0.15;
  animation: testimonialBackground 30s ease-in-out infinite alternate;
}

@keyframes testimonialBackground {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, -100px -100px;
  }
}

.testimonials-container {
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.testimonials-header h2 {
  color: white;
}

.testimonials-header p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: calc(var(--card-index) * 0.2s);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-yellow);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid var(--primary-yellow);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.testimonial-location {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.testimonial-rating {
  color: var(--primary-yellow);
}

.testimonial-star {
  margin-right: 2px;
}

/* -------------------------------------------------- 
   Blog Section
   -------------------------------------------------- */
.blog-section {
  padding: 5rem 0;
  background: var(--accent-white);
  position: relative;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -1rem auto 3rem;
  color: var(--primary-dark);
  opacity: 0.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.blog-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-category {
  display: inline-block;
  background: var(--primary-yellow);
  color: var(--primary-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.blog-item-date {
  font-size: 0.8rem;
  color: var(--primary-dark);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.blog-item-title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.blog-item-excerpt {
  color: var(--primary-dark);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.blog-item-link {
  display: flex;
  align-items: center;
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-item-link svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-item-link:hover {
  color: var(--primary-yellow);
}

.blog-item-link:hover svg {
  transform: translateX(5px);
}

.blog-cta {
  text-align: center;
}

/* -------------------------------------------------- 
   Scroll Sections - REDESIGNED WITH UNIQUE THEMES
   -------------------------------------------------- */
.scroll-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

/* Kerala Section - Wildlife Theme */
#kerala {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  position: relative;
}

/* Wildlife SVG Animation Background */
#kerala::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 C70,30 90,50 50,100 C10,50 30,30 50,0' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30,30 Q50,10 70,30 T100,30 T130,30' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E"),
    radial-gradient(circle at 30% 30%, rgba(42, 110, 63, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(26, 95, 122, 0.3) 0%, transparent 50%);
  opacity: 0.15;
  animation: wildlifeBackground 30s ease-in-out infinite alternate;
}

@keyframes wildlifeBackground {
  0% {
    background-position: 0 0, 0 0, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 100px 100px, -100px -100px, 30% 30%, 70% 70%;
  }
}

/* Lonavala Section - Travel Theme */
#lonavala {
  background: linear-gradient(to right, var(--primary-blue), var(--accent-teal));
  position: relative;
}

/* Travel SVG Animation Background */
#lonavala::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,50 L20,30 L40,50 L60,20 L80,40 L100,30' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='2'/%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 20%, rgba(26, 95, 122, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(42, 157, 143, 0.3) 0%, transparent 50%);
  opacity: 0.15;
  animation: travelBackground 30s ease-in-out infinite alternate;
}

@keyframes travelBackground {
  0% {
    background-position: 0 0, 0 0, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 100px 100px, -100px -100px, 20% 20%, 80% 80%;
  }
}

/* Pawna Section - Cultural Theme */
#pawna {
  background: linear-gradient(to right, var(--primary-orange), var(--accent-red));
  position: relative;
}

/* Cultural SVG Animation Background */
#pawna::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,10 L90,50 L50,90 L10,50 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,20 L80,20 L80,80 L20,80 Z' stroke='rgba(255,255,255,0.03)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
    radial-gradient(circle at 40% 40%, rgba(230, 57, 70, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(242, 158, 31, 0.2) 0%, transparent 50%);
  opacity: 0.15;
  animation: culturalBackground 30s ease-in-out infinite alternate;
}

@keyframes culturalBackground {
  0% {
    background-position: 0 0, 0 0, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 100px 100px, -100px -100px, 40% 40%, 60% 60%;
  }
}

/* Scroll Container */
.scroll-container {
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  position: relative;
  z-index: 2;
  touch-action: pan-x; /* Enable horizontal touch scrolling only */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.scroll-content {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  transition: transform 0.3s ease;
}

/* -------------------------------------------------- 
   Futuristic Card Designs
   -------------------------------------------------- */
/* Kerala Wildlife Cards */
#kerala .content-item {
  background: rgba(42, 110, 63, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 110, 63, 0.2);
}

#kerala .content-item-front {
  background: linear-gradient(135deg, rgba(42, 110, 63, 0.8), rgba(26, 95, 122, 0.8));
}

#kerala .content-item-back {
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.9), rgba(42, 110, 63, 0.9));
}

#kerala .content-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-green) 0%,
    transparent 25%,
    var(--primary-blue) 50%,
    transparent 75%,
    var(--primary-green) 100%
  );
  background-size: 200% 200%;
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderFlow 6s linear infinite;
}

#kerala .content-item:hover::before {
  opacity: 0.7;
}

/* Lonavala Travel Cards */
#lonavala .content-item {
  background: rgba(26, 95, 122, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 95, 122, 0.2);
}

#lonavala .content-item-front {
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.8), rgba(42, 157, 143, 0.8));
}

#lonavala .content-item-back {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.9), rgba(26, 95, 122, 0.9));
}

#lonavala .content-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-blue) 0%,
    transparent 25%,
    var(--accent-teal) 50%,
    transparent 75%,
    var(--primary-blue) 100%
  );
  background-size: 200% 200%;
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderFlow 6s linear infinite;
}

#lonavala .content-item:hover::before {
  opacity: 0.7;
}

/* Pawna Cultural Cards */
#pawna .content-item {
  background: rgba(242, 158, 31, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(242, 158, 31, 0.2);
}

#pawna .content-item-front {
  background: linear-gradient(135deg, rgba(242, 158, 31, 0.8), rgba(230, 57, 70, 0.8));
}

#pawna .content-item-back {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(242, 158, 31, 0.9));
}

#pawna .content-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-orange) 0%,
    transparent 25%,
    var(--accent-red) 50%,
    transparent 75%,
    var(--primary-orange) 100%
  );
  background-size: 200% 200%;
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderFlow 6s linear infinite;
}

#pawna .content-item:hover::before {
  opacity: 0.7;
}

/* Futuristic Content Item Base Styles */
.content-item {
  flex-shrink: 0;
  width: 320px;
  height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--highlight-shadow);
  perspective: 1000px;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  backdrop-filter: blur(10px);
}

.content-item.animate-in {
  transform: translateY(0);
  opacity: 1;
}

.content-item-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.content-item:hover .content-item-inner {
  transform: rotateY(180deg);
}

.content-item-front,
.content-item-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}

.content-item-back {
  transform: rotateY(180deg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.content-item-image {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.content-item-front-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.content-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  position: relative;
  display: inline-block;
}

.content-item-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-yellow);
  transition: width 0.3s ease;
}

.content-item:hover .content-item-title::after {
  width: 100%;
}

.content-item-description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* -------------------------------------------------- 
   Rent Car Section - Travel Theme
   -------------------------------------------------- */
.rent-car-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rent-car-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Travel SVG Animation Background */
.rent-car-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M10,30 L30,10 L50,30 L70,10 L90,30' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='10' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='80' cy='80' r='10' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E"),
    radial-gradient(circle at 30% 30%, rgba(26, 95, 122, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(42, 157, 143, 0.2) 0%, transparent 50%);
  opacity: 0.2;
  animation: rentCarBackground 30s ease-in-out infinite alternate;
}

@keyframes rentCarBackground {
  0% {
    background-position: 0 0, 0 0, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 100px 100px, -100px -100px, 30% 30%, 70% 70%;
  }
}

.rent-car-content {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px var(--highlight-shadow);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.rent-car-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .rent-car-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rent-subsection h3 {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-yellow);
  padding-bottom: 0.8rem;
  margin-bottom: 1.8rem;
  font-size: 1.6rem;
}

.car-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .car-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Futuristic Car Item Design */
.car-item {
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px var(--highlight-shadow);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(30px);
}

.car-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.car-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.car-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px var(--highlight-shadow);
}

.car-item::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-yellow) 0%,
    transparent 25%,
    var(--primary-orange) 50%,
    transparent 75%,
    var(--primary-yellow) 100%
  );
  background-size: 200% 200%;
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderFlow 6s linear infinite;
}

.car-item:hover::after {
  opacity: 0.7;
}

.car-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.car-item:hover .car-item-image {
  transform: scale(1.1);
}

.car-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: white;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.car-item:hover .car-item-content {
  transform: translateY(0);
  opacity: 1;
}

.car-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: white;
  position: relative;
  display: inline-block;
}

.car-item-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-yellow);
  transition: width 0.3s ease;
}

.car-item:hover .car-item-title::after {
  width: 100%;
}

.car-item-details {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
}

.car-item:hover .car-item-details {
  opacity: 1;
  transform: translateY(0);
}

.car-item-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* -------------------------------------------------- 
   Contact Section (with Animated Floating SVG Element)
   -------------------------------------------------- */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  position: relative;
  overflow: hidden;
}

.contact-section h2 {
  color: var(--accent-white);
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,0 C70,30 90,50 50,100 C10,50 30,30 50,0 Z' fill='rgba(255,255,255,0.7)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30,30 Q50,10 70,30 T100,30 T130,30' fill='none' stroke='rgba(200,210,250,0.7)' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0.15;
  animation: contactBackground 15s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes contactBackground {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, -100px -100px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateX(-50px);
}

.contact-form.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 2px rgba(248, 196, 35, 0.3);
}

.contact-info::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.7)"><path d="M50 0 C70 30 90 70 50 100 C10 70 30 30 50 0 Z" fill="%46ff7a00"/><circle cx="50" cy="50" r="10" fill="rgba(255,255,255,0.7)"/><text x="50" y="55" font-size="10" fill="rgba(255,255,255,0.7)" text-anchor="middle">📞</text></svg>');
  position: absolute;
  right: 10px;
  bottom: 10px;
  opacity: 0.5;
  transform: scale(1.5);
  z-index: 1;
  animation: floatPulse 6s ease-in-out infinite;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: scale(1.5) translateY(0);
  }
  50% {
    transform: scale(1.6) translateY(-10px);
  }
}

.contact-info {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(50px);
}

.contact-info.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.contact-info-card h3 {
  margin-bottom: 2rem;
  color: white;
  position: relative;
  display: inline-block;
}

.contact-info-card h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-yellow);
  border-radius: 3px;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details p {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-details p svg {
  margin-right: 1rem;
  min-width: 24px;
  color: var(--primary-yellow);
}

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

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

.social-icon:hover {
  background: var(--primary-yellow);
  color: var(--primary-dark);
  transform: translateY(-5px);
}

/* -------------------------------------------------- 
   Footer
   -------------------------------------------------- */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 80px;
}

.footer-text p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.tagline {
  color: var(--primary-yellow);
  font-style: italic;
}

/* -------------------------------------------------- 
   Navigation Buttons
   -------------------------------------------------- */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.nav-button:hover::before {
  opacity: 1;
  animation: rippleEffect 1s ease-out;
}

/* -------------------------------------------------- 
   Mobile Menu
   -------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: white;
  margin: 6px auto;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: var(--primary-yellow);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;

  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-link {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--primary-yellow);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* -------------------------------------------------- 
   WhatsApp Floating Button
   -------------------------------------------------- */
.whatsapp-button {
  position: fixed;
  bottom: 100px; /* Adjust so it's above the scroll-to-top */
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--brand-whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 98;
}

.whatsapp-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-button:hover {
  background: white;
  color: var(--brand-whatsapp);
  transform: translateY(-5px);
}

/* -------------------------------------------------- 
   Scroll to Top Button
   -------------------------------------------------- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: white;
  transform: translateY(-5px);
}

/* -------------------------------------------------- 
   Animations
   -------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes borderFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

@keyframes rippleEffect {
  0% {
    transform: scale(0.3);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes birdFly {
  0% {
    left: -50px;
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    left: 100%;
    transform: translateY(0);
  }
}

@keyframes leafFall {
  0% {
    top: -50px;
    transform: rotate(0deg) translateX(0);
  }
  25% {
    transform: rotate(90deg) translateX(20px);
  }
  50% {
    transform: rotate(180deg) translateX(0);
  }
  75% {
    transform: rotate(270deg) translateX(-20px);
  }
  100% {
    top: 100%;
    transform: rotate(360deg) translateX(0);
  }
}

@keyframes cloudFloat {
  0% {
    left: -100px;
  }
  100% {
    left: 100%;
  }
}

@keyframes compassPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(360deg);
  }
}

@keyframes dancerMove {
  0%,
  100% {
    bottom: -60px;
    transform: rotate(-5deg);
  }
  10%,
  90% {
    bottom: 10%;
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
  30%,
  50%,
  70% {
    transform: rotate(-10deg);
  }
}

/* -------------------------------------------------- 
   Responsive Styles
   -------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }



  .content-item {
    width: 280px;
    height: 350px;
  }

  .rent-car-section {
    padding: 3rem 0;
  }

  .rent-car-content {
    padding: 1.5rem;
  }

  .hero-text h1 {
    margin-top: 130%;
    font-size: medium;
  }

  .hero-text p {
    font-size: smaller;
  }

  .hero-section {
    height: 100vh;
  }

  #heroVideo {
    margin-left: -10px;
    margin-top:-30%;
  }


}

/* -------------------------------------------------- 
   Kerala Loader
   -------------------------------------------------- */
.kerala-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.kerala-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  width: 120px; /* Slightly bigger for image */
  height: 120px;
}

.loader-logo {
  width: 100%;
  height: auto;
  animation: loaderFloat 2s ease-in-out infinite; /* Nice floating effect */
}

/* Float animation for logo */
@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Video Play Button */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(248, 196, 35, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-play-button:hover {
  background: rgba(248, 196, 35, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.background-animate {
  animation: backgroundPulse 5s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Additional styles for the updated layout */

/* Timeline image card */
.timeline-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Removed highlight section styles */
/* The story-highlights section has been removed as requested */

/* Rent car horizontal layout */
.rent-car-horizontal {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .rent-car-horizontal {
    flex-direction: row;
    gap: 2rem;
  }

  .rent-car-horizontal .rent-subsection {
    flex: 1;
  }
}

/* Button styles for cards */
.content-item-back .btn {
  margin-top: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.text-center {
  text-align: center;
}

/* Row and column layout for booking info */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-6 {
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

/* List styles */
ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* -------------------------------------------------- 
   Packages Page Styles
   -------------------------------------------------- */
.packages-section {
  padding: 5rem 0;
  background: var(--accent-white);
  position: relative;
}

/* Packages Tabs */
.packages-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.package-tab {
  padding: 0.75rem 2rem;
  background: white;
  border: 2px solid var(--primary-orange);
  border-radius: 30px;
  color: var(--primary-orange);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-tab:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-3px);
}

.package-tab.active {
  background: var(--primary-orange);
  color: white;
}

/* Package Content */
.package-content {
  display: none;
}

.package-content.active {
  display: block;
}

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

/* Package Card */
.package-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.package-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-details {
  padding: 1.5rem;
}

.package-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.package-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.package-features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.package-feature svg {
  color: var(--primary-orange);
}

.package-cta {
  margin-top: 1.5rem;
}

/* Responsive adjustments for packages */
@media (max-width: 768px) {
  .packages-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .package-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}


