/* Required Imports */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

/* CSS Variables - Wanderlust Trails Color Scheme */
:root {
  --primary-sunset: #FF6B35;
  --primary-deep-ocean: #004E89;
  --accent-golden-sand: #F7B32B;
  --accent-jungle-green: #2A9D8F;
  --accent-lavender-mist: #9B72AA;
  --neutral-cloud: #F4F4F9;
  --neutral-stone: #6C757D;
  --neutral-midnight: #1A1A2E;
  --gradient-sky: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-horizon: linear-gradient(135deg, #FF6B35 0%, #F7B32B 100%);
  --gradient-ocean: linear-gradient(135deg, #004E89 0%, #2A9D8F 100%);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-hard: 0 15px 50px rgba(0, 0, 0, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--neutral-midnight);
  background-color: var(--neutral-cloud);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sticky Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-horizon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--transition-smooth);
  letter-spacing: -0.5px;
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Navigation Styles */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--neutral-midnight);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-horizon);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--primary-sunset);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--neutral-midnight);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  color: var(--primary-sunset);
  transform: scale(1.1);
}

/* Responsive Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 244, 249, 0.98) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem;
    gap: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu a {
    font-size: 1.25rem;
    width: 100%;
  }
}

/* Button Styles */
.btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-horizon);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}

.btn-secondary {
  background: var(--gradient-ocean);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}

.btn-outline {
  background: transparent;
  color: var(--primary-sunset);
  border: 2px solid var(--primary-sunset);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-sunset);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-ghost {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-sunset);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.05);
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--neutral-midnight) 0%, #2a2a3e 100%);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  border-top: 3px solid var(--accent-golden-sand);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-golden-sand);
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.cookie-text a:hover {
  color: var(--primary-sunset);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-midnight);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background: white;
  font-family: inherit;
  color: var(--neutral-midnight);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-sunset);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--neutral-stone);
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-input-icon {
  position: relative;
}

.form-input-icon i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-stone);
  transition: var(--transition-smooth);
}

.form-input-icon .form-input {
  padding-left: 3rem;
}

.form-input-icon .form-input:focus ~ i {
  color: var(--primary-sunset);
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-sunset);
}

.form-error {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-success {
  color: var(--accent-jungle-green);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Card Styles */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-horizon);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-medium);
  z-index: 10;
}

.card-content {
  padding: 1.75rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--neutral-midnight);
  transition: var(--transition-smooth);
}

.card:hover .card-title {
  color: var(--primary-sunset);
}

.card-description {
  color: var(--neutral-stone);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.card-price {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-horizon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid Layouts */
.grid-container {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}

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

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

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

/* Accordion Styles */
.accordion {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
}

.accordion-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--neutral-midnight);
  transition: var(--transition-smooth);
  border: none;
  width: 100%;
  text-align: left;
}

.accordion-header:hover {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  color: var(--primary-sunset);
}

.accordion-header.active {
  background: linear-gradient(135deg, var(--primary-sunset) 0%, var(--accent-golden-sand) 100%);
  color: white;
}

.accordion-icon {
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 1.5rem 2rem;
  color: var(--neutral-stone);
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
}

/* Loading Spinner */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.spinner-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 107, 53, 0.2);
  border-top-color: var(--primary-sunset);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.spinner-travel {
  width: 80px;
  height: 80px;
  position: relative;
}

.spinner-travel::before {
  content: '✈';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: plane-fly 2s ease-in-out infinite;
}

.spinner-travel::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px dashed var(--primary-sunset);
  border-radius: 50%;
  animation: spin 3s linear infinite;
}

@keyframes plane-fly {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-cloud);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-sunset) 0%, var(--accent-golden-sand) 100%);
  border-radius: 6px;
  border: 2px solid var(--neutral-cloud);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-golden-sand) 0%, var(--primary-sunset) 100%);
}

/* Section Styles */
.section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-horizon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-stone);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-horizon);
  margin: 2rem auto;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-sky);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: hero-pattern 60s linear infinite;
  opacity: 0.3;
}

@keyframes hero-pattern {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  animation: fade-in-up 1s ease-out;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fade-in-up 1s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 1s ease-out 0.4s backwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Box */
.feature-box {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
  border-color: var(--primary-sunset);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-horizon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-bounce);
}

.feature-box:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-midnight);
}

.feature-description {
  color: var(--neutral-stone);
  line-height: 1.6;
}

/* Testimonial Card */
.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: rgba(255, 107, 53, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--neutral-midnight);
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-sunset);
}

.testimonial-info h4 {
  font-weight: 700;
  color: var(--neutral-midnight);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--neutral-stone);
  font-size: 0.95rem;
}

/* Stats Counter */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.stat-box:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--neutral-stone);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hard);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 179, 43, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-overlay i {
  font-size: 3rem;
  color: white;
  transform: scale(0);
  transition: var(--transition-bounce);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Price Table */
.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-horizon);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hard);
}

.price-card:hover::before {
  transform: scaleX(1);
}

.price-card.featured {
  border: 3px solid var(--primary-sunset);
  transform: scale(1.05);
}

.price-card.featured::before {
  transform: scaleX(1);
  height: 8px;
}

.price-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-midnight);
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-horizon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-period {
  color: var(--neutral-stone);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--neutral-midnight);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features i {
  color: var(--accent-jungle-green);
  font-size: 1.25rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--neutral-midnight) 0%, #2a2a3e 100%);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-horizon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--accent-golden-sand);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-bounce);
}

.footer-social a:hover {
  background: var(--gradient-horizon);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

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

.zoom-in {
  animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-horizon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-sky);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1.5rem;
  }

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

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .hero-title {
    font-size: 1.875rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .price-amount {
    font-size: 3rem;
  }
}