/* Color Palette Integration */
:root {
  --color-50: #f5f3ff;
  --color-100: #eeeafd;
  --color-200: #e0d7fd;
  --color-300: #c8b7fb;
  --color-400: #a989f6;
  --color-500: #9361f1;
  --color-600: #8540e7;
  --color-700: #752ed3;
  --color-800: #6226b1;
  --color-900: #522191;
  --color-950: #321362;

  --primary-color: #752ed3;
  --secondary-color: #9361f1;
  --background-light: #f5f3ff;
  --text-dark: #321362;
  --accent-color: #8540e7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: "Inter", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}


/* Header Styling */
header {
  background: linear-gradient(135deg, var(--color-700), var(--color-900));
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  position: sticky;
  top: 0;
}

header .logo img {
  max-height: 40px;
  filter: brightness(0) invert(1);
}

.logo img {
  max-height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-50);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a.active {
  color: var(--color-300);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-300);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown Styling */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px;
  z-index: 1000;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: var(--text-dark);
  padding: 10px 15px;
  display: block;
  border-radius: 5px;
}

.dropdown-content a:hover {
  background-color: var(--color-100);
}

/* User Dropdown */
.user-dropdown {
  position: relative;
}

.user-button {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-50);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.user-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
  border: 2px solid var(--color-300);
}

.user-name {
  margin-right: 8px;
  font-weight: 500;
}

.user-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.user-dropdown:hover .user-dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.user-dropdown-content a {
  color: var(--text-dark);
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  text-decoration: none;
}

.user-dropdown-content a i {
  margin-right: 10px;
  color: var(--primary-color);
}

.user-dropdown-content a:hover {
  background-color: var(--color-100);
}

/* Main Content Sections */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-800);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--color-600);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Banner Styling */
.banner {
  background: linear-gradient(135deg, var(--color-700), var(--color-900));
  color: white;
  padding: 60px 0;
  border-radius: 15px;
  text-align: center;
  margin: 0 15px;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--color-50);
}

.cta-button {
  display: inline-block;
  background-color: var(--color-500);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: var(--color-600);
  transform: translateY(-3px);
  color: white;
}

.cta-button-alt {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  border: 2px solid var(--color-300);
}

.cta-button-alt:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--color-700), var(--color-900));
  color: white;
  padding: 80px 0 0;
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-text {
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.0;
  margin-right: 20px;
}

.gradient-text {
  background: linear-gradient(to right, var(--color-300), var(--color-100));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  margin-right: 20px;
}

.primary-button {
  background: linear-gradient(to right, var(--color-500), var(--color-300));
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(117, 46, 211, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(117, 46, 211, 0.4);
  color: white;
}

.primary-button i {
  transition: transform 0.3s ease;
}

.primary-button:hover i {
  transform: translateX(5px);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.secondary-button-alt {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--color-300);
  transition: background-color 0.3s ease;
}

.secondary-button-alt:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-300);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
  min-width: 280px;
}

.floating-card.card-1 {
  top: 10%;
  right: -30px;
  margin-left: 15px;
  transform: translateX(50%);
}

.floating-card.card-2 {
  top: 55%;
  right: -100px;
  margin-left: 10px;
}

.floating-card.card-3 {
  top: 100%;
  right: -30px;
  margin-left: 15px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--color-100);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-700);
  font-size: 1.5rem;
}

.card-text {
  flex: 1;
}

.card-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--color-800);
}

.card-text p {
  font-size: 0.8rem;
  color: var(--color-600);
  margin: 0;
}

.hero-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.hero-shape-divider .shape-fill {
  fill: #ffffff;
}

.card-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--color-100), var(--color-200));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-700);
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.15);
}

.card-text {
  flex: 1;
}

.card-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-800);
}

.card-text p {
  font-size: 0.9rem;
  color: var(--color-600);
  margin: 0;
}

/* Shops Section */
.shops-section {
  padding: 100px 0;
  background-color: #0a0118;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.shops-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(109, 40, 217, 0.3) 0%, rgba(10, 1, 24, 1) 70%);
  z-index: 0;
}

.shops-container {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}

/* Card perspective container */
.card-perspective-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  perspective: 900px;
  margin: 10px 0;
  position: relative;
  min-height: 500px;
}

/* Shop card with 3D perspective */
.shop-card-perspective {
  width: 280px;
  height: 480px;
  margin: 0 -20px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatCard 6s ease-in-out infinite;
}

.shop-card-perspective:hover {
  transform: translateY(-20px) rotate3d(0, 1, 0, 0deg) !important;
  z-index: 10 !important;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate3d(0, 1, 0, var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-15px) rotate3d(0, 1, 0, var(--rotation, 0deg));
  }
}

.shop-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, #2e1065, #0a0118);
}

/* Shop image styling */
.shop-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8) contrast(1.2);
}

.shop-card-perspective:hover .shop-image img {
  transform: scale(1.1);
}

/* Overlay for text at bottom of card */
.shop-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  z-index: 2;
}

.shop-acto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.acto-number {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
}

.acto-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Shop info styling */
.shop-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.shop-card-perspective:hover .shop-info {
  opacity: 1;
}

.shop-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.shop-service {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.shop-owner-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.shop-owner {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Neon tag styling */
.neon-tag {
  position: absolute;
  top: 20px;
  right: -40px;
  transform: rotate(90deg);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 4;
  width: 150px;
  text-align: center;
}

/* Color variations - Updated to match lavender theme */
.purple-glow .neon-tag {
  background: linear-gradient(90deg, var(--color-600), var(--color-800));
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.7);
}

.blue-glow .neon-tag {
  background: linear-gradient(90deg, var(--color-500), var(--color-700));
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
}

.pink-glow .neon-tag {
  background: linear-gradient(90deg, var(--color-400), var(--color-600));
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.7);
}

.green-glow .neon-tag {
  background: linear-gradient(90deg, var(--color-700), var(--color-900));
  box-shadow: 0 0 15px rgba(76, 29, 149, 0.7);
}

.orange-glow .neon-tag {
  background: linear-gradient(90deg, var(--color-500), var(--color-700));
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.7);
}

.purple-glow .acto-title {
  color: var(--color-300);
  text-shadow: 0 0 10px rgba(109, 40, 217, 0.7);
}

.blue-glow .acto-title {
  color: var(--color-200);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.7);
}

.pink-glow .acto-title {
  color: var(--color-300);
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.7);
}

.green-glow .acto-title {
  color: var(--color-200);
  text-shadow: 0 0 10px rgba(76, 29, 149, 0.7);
}

.orange-glow .acto-title {
  color: var(--color-300);
  text-shadow: 0 0 10px rgba(109, 40, 217, 0.7);
}

/* Decorative elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(196, 181, 253, 0.3);
  pointer-events: none;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation: rotate 30s linear infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  animation: rotate 20s linear infinite reverse;
}

.decorative-x {
  position: absolute;
  color: rgba(196, 181, 253, 0.3);
  font-size: 2rem;
  pointer-events: none;
}

.x-1 {
  top: 25%;
  right: 15%;
  animation: pulse 4s ease-in-out infinite;
}

.x-2 {
  bottom: 30%;
  left: 10%;
  animation: pulse 5s ease-in-out infinite;
}

.decorative-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(196, 181, 253, 0.4);
  pointer-events: none;
}

.dot-1 {
  top: 40%;
  left: 20%;
  animation: pulse 3s ease-in-out infinite;
}

.dot-2 {
  top: 20%;
  right: 25%;
  animation: pulse 4s ease-in-out infinite 1s;
}

.dot-3 {
  bottom: 15%;
  left: 30%;
  animation: pulse 5s ease-in-out infinite 2s;
}

.decorative-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.3), transparent);
  pointer-events: none;
}

.line-1 {
  width: 200px;
  top: 30%;
  left: 40%;
  transform: rotate(-30deg);
}

.line-2 {
  width: 150px;
  bottom: 25%;
  right: 35%;
  transform: rotate(20deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Section title styling */
.shops-section .section-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shops-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-500), var(--color-700));
}

.shops-section .section-subtitle {
  color: var(--color-300);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Services Section - Made Scrollable */
.services-section {
  padding: 100px 0;
  background-color: var(--color-50);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(109, 40, 217, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.packages-container {
  position: relative;
  z-index: 1;
  display: flex;
  overflow-x: auto;
  gap: 30px; /* Increase spacing between packages */
  padding: 30px 0; /* Adjust padding for better spacing */
  scroll-behavior: smooth;
  scrollbar-width: thin;                  
  scrollbar-color: var(--color-600) var(--color-100);
  -webkit-overflow-scrolling: touch;
  margin-top: 30px;
  width: 100%; /* Ensure it takes full width */
  max-width: 1400px; /* Expand maximum width */
  margin-left: auto;
  margin-right: auto;
}

.packages-container::-webkit-scrollbar {
  height: 20px;
}

.packages-container::-webkit-scrollbar-track {
  background: var(--color-100);
  border-radius: 3px;
}

.packages-container::-webkit-scrollbar-thumb {
  background: var(--color-600);
  border-radius: 5px;
}

.packages-container::-webkit-scrollbar-thumb:hover {
  background: var(--color-700);
}

/* Increase the size of the individual package display */
.package-item {
  min-width: 350px; /* Adjust width of each package */
  max-width: 400px;
  flex: 1 1 auto;
}

.package-card {
  min-width: 300px;
  flex: 0 0 auto;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 450px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--color-200);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.2);
}

.package-category {
  position: absolute;
  top: 20px;
  right: 0;
  background: linear-gradient(90deg, var(--color-600), var(--color-800));
  color: white;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px 0 0 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(109, 40, 217, 0.2);
}

.package-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

.package-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-800);
}

.package-description {
  color: var(--color-600);
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-700);
  margin-bottom: 20px;
}

.package-features {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-100);
  display: flex;
  align-items: center;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li i {
  color: var(--color-700);
  margin-right: 10px;
}

.package-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--color-600) 0%, var(--color-800) 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: auto;
}

.package-button:hover {
  background: linear-gradient(135deg, var(--color-700) 0%, var(--color-900) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.3);
  color: white;
}

/* Loading spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
}

.loading-spinner .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(109, 40, 217, 0.2);
  border-radius: 50%;
  border-top-color: var(--color-700);
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.loading-spinner p {
  color: var(--color-600);
  font-size: 1rem;
}

/* About Section */
.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2e1065, #4c1d95);
  z-index: 1;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(147, 97, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(133, 64, 231, 0.15) 0%, transparent 50%);
  z-index: -1;
}

.about-container {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Grid background */
.about-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center center;
  z-index: -1;
  perspective: 1000px;
  transform-style: preserve-3d;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

/* Content styling */
.about-section .section-title {
  color: white;
  text-shadow: 0 0 15px rgba(147, 97, 241, 0.5);
}

.about-section .section-title::after {
  background-color: var(--color-500);
  box-shadow: 0 0 15px var(--color-500);
}

.about-section .section-subtitle {
  color: var(--color-300);
}

.about-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.about-image {
  position: relative;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.aboutSwiper {
  width: 100%;
  padding: 50px 0;
  position: relative;
}

.aboutSwiper .swiper-slide {
  width: 300px;
  height: 380px;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.8);
  transition: transform 0.3s;
  position: relative;
}

.aboutSwiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(147, 97, 241, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.aboutSwiper .swiper-slide-active {
  transform: scale(1);
}

.aboutSwiper .swiper-slide-active::after {
  opacity: 1;
}

.aboutSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.aboutSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.aboutSwiper .swiper-pagination-bullet-active {
  background: var(--color-500);
  box-shadow: 0 0 15px var(--color-500);
}

.about-cta {
  display: inline-block;
  background: linear-gradient(45deg, var(--color-500), var(--color-700));
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: white;
  background: linear-gradient(45deg, var(--color-600), var(--color-800));
}

/* Testimonials Section */
.bg-light {
  background-color: var(--color-50);
}

.testimonial-slider {
  position: relative;
  margin: 50px 15px;
}

.testimonial-slider-container {
  overflow: hidden;
}

.testimonial-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  background-color: white;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--color-100);
}

.testimonial-rating {
  margin-bottom: 25px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1.3rem;
  margin: 0 3px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-dark);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 18px;
  border: 3px solid var(--color-300);
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.2);
}

.testimonial-info h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--color-800);
}

.testimonial-info p {
  color: var(--color-600);
  font-size: 0.95rem;
}

.testimonial-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.slider-arrow {
  background-color: var(--color-700);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.2);
}

.slider-arrow:hover {
  background-color: var(--color-800);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(109, 40, 217, 0.3);
}

.slider-dots {
  display: flex;
  gap: 12px;
  margin: 0 25px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-200);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--color-700);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(109, 40, 217, 0.3);
}

/* Application Form Section */
#apply.section {
  background-color: var(--color-50);
  padding: 100px 0;
}

.benefits-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 255, 0.8));
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(109, 40, 217, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 1;
  animation: borderGlow 3s ease-in-out infinite;
  height: 100%;
}

@keyframes borderGlow {
  0%,
  100% {
    box-shadow: 0 15px 35px rgba(109, 40, 217, 0.15);
  }
  50% {
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.25);
  }
}

.benefits-title {
  color: var(--color-800);
  font-size: 1.5rem;
  margin-bottom: 35px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  text-align: left;
  background: linear-gradient(45deg, var(--color-700), var(--color-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.2px;
}

.benefits-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-500), var(--color-700));
  border-radius: 2px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefits-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-500), var(--color-700));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 30px rgba(109, 40, 217, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.benefits-list li:hover::before {
  opacity: 1;
}

.benefits-list i {
  font-size: 22px;
  margin-right: 18px;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, var(--color-500), var(--color-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 8px;
  border-radius: 12px;
  background-color: var(--color-50);
}

.benefits-list li:hover i {
  transform: scale(1.2) rotate(5deg);
}

.benefits-list span {
  color: var(--color-800);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.benefits-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.benefits-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.benefits-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.benefits-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.application-form {
  background-color: white;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-100);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-200);
  border-radius: 12px;
  background-color: var(--color-50);
  color: var(--text-dark);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-700);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.1);
  background-color: white;
}

.form-hint {
  margin-top: 8px;
  color: var(--color-600);
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-700), var(--color-600));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-800), var(--color-700));
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(109, 40, 217, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--color-700), var(--color-900));
  color: var(--color-50);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(147, 97, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(133, 64, 231, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.footer-logo {
  max-height: 55px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: white;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--color-300);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-200);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-newsletter h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: white;
}

.footer-newsletter h4::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--color-300);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.footer-newsletter p {
  margin-bottom: 25px;
}

.newsletter-form {
  margin-bottom: 25px;
}

.input-with-button {
  display: flex;
  position: relative;
}

.input-with-button input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--color-200);
  border-radius: 12px 0 0 12px;
  background-color: var(--color-50);
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-with-button input:focus {
  outline: none;
  border-color: var(--color-700);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.1);
  background-color: white;
}

.input-with-button button {
  background: linear-gradient(135deg, var(--color-700), var(--color-600));
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.input-with-button button:hover {
  background: linear-gradient(135deg, var(--color-800), var(--color-700));
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.copyright {
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-bottom-links a {
  color: var(--color-200);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .swiftpax-logo {
    max-width: 450px;
  }

  .floating-card.card-1 {
    transform: translateX(30%);
  }
}

@media screen and (max-width: 768px) {
  /* Hide regular navigation */
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-900);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 100;
    overflow-y: auto;
  }

  /* Active state for mobile menu */
  .nav-links.nav-active {
    right: 0;
  }

  /* Navigation Links in Mobile */
  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 15px 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 15px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Dropdown Styles for Mobile */
  .dropdown-content {
    display: none;
    position: static;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }

  .dropdown-content.mobile-active {
    display: block;
  }

  .dropdown-content a {
    color: var(--color-50);
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
  }

  /* Burger Menu Styles */
  .burger {
    display: block;
    cursor: pointer;
    z-index: 200;
    padding: 10px;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
  }

  /* Burger Animation */
  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.toggle .line2 {
    opacity: 0;
  }

  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Prevent scrolling when menu is open */
  body.no-scroll {
    overflow: hidden;
  }

  /* Adjust header for mobile */
  header {
    padding: 10px 5%;
  }

  /* Auth Buttons in Mobile */
  .auth-buttons {
    display: none; /* Hide on mobile, will be in mobile menu */
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .swiftpax-logo {
    max-width: 350px;
  }

  .floating-card.card-1 {
    right: -15px;
    transform: translateX(20%);
  }

  .about-container {
    padding: 30px;
  }
}

@media screen and (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .swiftpax-logo {
    max-width: 280px;
  }

  .cta-button,
  .cta-button-alt {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .floating-card.card-1 {
    right: -10px;
    transform: translateX(10%);
  }

  .floating-card.card-2,
  .floating-card.card-3 {
    display: none;
  }

  .package-card {
    min-width: 260px;
  }

  .application-form {
    padding: 25px 20px;
  }
}


/* Add this to your existing CSS file to style the error message and no packages message */

.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
  color: var(--color-600);
  text-align: center;
  grid-column: 1 / -1;
}

.error-message i {
  font-size: 3rem;
  color: var(--color-700);
  margin-bottom: 15px;
}

.error-message p {
  font-size: 1.1rem;
}

.no-packages {
  width: 100%;
  text-align: center;
  padding: 50px 0;
  color: var(--color-600);
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

/* Enhance loading spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
}

.loading-spinner .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(109, 40, 217, 0.2);
  border-radius: 50%;
  border-top-color: var(--color-700);
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.loading-spinner p {
  color: var(--color-600);
  font-size: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


  /* Footer */
  footer {
    background: linear-gradient(135deg, var(--color-700), var(--color-900));
    color: var(--color-50);
    padding: 60px 0 20px;
  }
  
  .footer-logo {
    max-height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
  }
  
  .footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links h4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--color-300);
    bottom: 0;
    left: 0;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: var(--color-200);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  .footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-newsletter h4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--color-300);
    bottom: 0;
    left: 0;
  }
  
  .footer-newsletter p {
    margin-bottom: 20px;
  }
  
  .newsletter-form {
    margin-bottom: 20px;
  }
  
  .app-download {
    margin-top: 20px;
  }
  
  .app-download p {
    margin-bottom: 10px;
  }
  
  .app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .app-button {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .app-button i {
    margin-right: 8px;
  }
  
  .app-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright {
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
  }
  
  .footer-bottom-links a {
    color: var(--color-200);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: white;
  }

  .container{
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 50px 20px;
  }
  
  
 
  /* Notification */
  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s ease;
  }
  
  .notification.show {
    transform: translateX(0);
  }
  
  .notification-content {
    background-color: white;
    color: var(--color-800);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border-left: 4px solid var(--color-700);
  }
  
  .notification-content i {
    color: #4caf50;
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  #notification-message {
    font-size: 0.95rem;
    color: #333;
  }
  
  @media screen and (max-width: 992px) {
    .section {
      padding: 60px 0;
    }
  
    .banner {
      padding: 50px 0;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    /* Hide regular navigation */
    .nav-links {
      position: fixed;
      right: -100%;
      top: 70px; /* Adjust based on header height */
      width: 100%;
      height: calc(100vh - 70px);
      background-color: var(--color-900);
      flex-direction: column;
      align-items: center;
      padding: 20px;
      transition: right 0.3s ease-in-out;
      z-index: 100;
      overflow-y: auto;
    }
  
    /* Active state for mobile menu */
    .nav-links.nav-active {
      right: 0;
    }
  
    /* Navigation Links in Mobile */
    .nav-links li {
      width: 100%;
      text-align: center;
      margin: 15px 0;
    }
  
    .nav-links a {
      font-size: 1.2rem;
      display: block;
      padding: 15px;
      border-radius: 10px;
    }
  
    .nav-links a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
  
    /* Dropdown Styles for Mobile */
    .dropdown-content {
      display: none;
      position: static;
      background-color: transparent;
      box-shadow: none;
      width: 100%;
      padding: 0;
      margin-top: 10px;
    }
  
    .dropdown-content.mobile-active {
      display: block;
    }
  
    .dropdown-content a {
      color: var(--color-50);
      padding: 12px;
      background-color: rgba(255, 255, 255, 0.1);
      margin-bottom: 5px;
    }
  
    /* Burger Menu Styles */
    .burger {
      display: block;
      cursor: pointer;
      z-index: 200;
      padding: 10px;
    }
  
    .burger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px;
      transition: all 0.3s ease;
    }
  
    /* Burger Animation */
    .burger.toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .burger.toggle .line2 {
      opacity: 0;
    }
  
    .burger.toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  
    /* Prevent scrolling when menu is open */
    body.no-scroll {
      overflow: hidden;
    }
  
    /* Adjust header for mobile */
    header {
      padding: 10px 5%;
    }
  
    /* Auth Buttons in Mobile */
    .auth-buttons {
      display: none; /* Hide on mobile, will be in mobile menu */
    }
  
    /* Show mobile bottom navigation */
    .mobile-bottom-nav {
      display: block;
    }
  
    /* Add padding to bottom of page for mobile nav */
    body {
      padding-bottom: 70px;
    }
  
    /* Adjust back to top button position */
    .back-to-top {
      bottom: 80px;
    }
  
    .section {
      padding: 40px 0;
    }
  
    .banner {
      padding: 40px 15px;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .shops-grid,
    .services-grid,
    .promo-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .footer-bottom-links {
      justify-content: center;
      margin-top: 15px;
    }
  
    .copyright {
      text-align: center;
    }
  
    .floating-card.card-1 {
        right: -15px;
        transform: translateX(25%);
    }
  }
  
  @media screen and (max-width: 576px) {
    .section-title {
      font-size: 1.5rem;
    }
  
    .banner h1 {
      font-size: 1.8rem;
    }
  
    .cta-button,
    .cta-button-alt {
      width: 100%;
      text-align: center;
      margin-top: 10px;
    }
    
    .shop-filter {
      flex-direction: column;
    }
  
    .filter-btn {
      width: 100%;
      margin-bottom: 5px;
      padding: 10px;
    }
  
    .promo-details {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .promo-code {
      margin-top: 10px;
    }
  
    .testimonial-card {
      padding: 20px 15px;
    }
  
    .testimonial-text {
      font-size: 1rem;
    }
  
    .testimonial-avatar {
      width: 50px;
      height: 50px;
    }
  
    .booking-form-container,
    .contact-form-container {
      padding: 20px 15px;
    }
  
    .form-group label {
      font-size: 0.9rem;
    }
  
    .floating-card.card-1 {
        right: -10px;
        transform: translateX(15%);
    }
  }

  /* Footer Contact Info Styles */
.footer-contact-info {
  margin-top: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: var(--color-200);
}

.footer-contact-item i {
  width: 20px;
  margin-right: 10px;
  color: var(--color-300);
}

.footer-contact-item a {
  color: var(--color-200);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: white;
}

/* Policy Pages Styling */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
  color: var(--color-800);
  margin-bottom: 30px;
  text-align: center;
}

.policy-container h2 {
  color: var(--color-700);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-container p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.policy-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-container li {
  margin-bottom: 10px;
}

.policy-container a {
  color: var(--color-600);
  text-decoration: none;
}

.policy-container a:hover {
  text-decoration: underline;
}

.policy-container .back-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--color-600);
  text-decoration: none;
}

.policy-container .back-link:hover {
  text-decoration: underline;
}

/* Selected Package Info Styling */
.selected-package-info {
  background-color: #f5f3ff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #e0d7fd;
  text-align: center;
}

.selected-package-info p {
  color: #6226b1;
  font-weight: 500;
  margin: 0;
}


/* Additional CSS for package modal if needed as separate file */

/* Package Bookings Modal Styles */
.package-bookings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.package-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 85vh;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.3s ease-out;
}

.package-modal-header {
  background: linear-gradient(135deg, #8540e7, #9361f1);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.booking-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.booking-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.booking-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.booking-detail i {
  width: 16px;
  color: #6b7280;
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid #8540e7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .package-modal-content {
    max-width: 95vw;
    max-height: 90vh;
  }

  .package-modal-header {
    padding: 1rem;
  }

  .package-modal-body {
    padding: 1rem;
    max-height: 70vh;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }
}
