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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #8b5cf6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #1f2937;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #8b5cf6;
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 1px solid #8b5cf6;
  background: transparent;
  color: #8b5cf6;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #8b5cf6;
  color: white;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.7), rgba(139, 92, 246, 0.3)),
    url("/scenic-mountain-landscape-with-blue-sky-and-green-.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-content {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  color: #8b5cf6;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.accent-text {
  color: #8b5cf6;
  display: inline-block;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Booking Card */
.booking-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.8s ease-out 0.3s both;
}

/* Tabs */
.tab-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  background: rgba(139, 92, 246, 0.1);
  padding: 0.25rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.tab-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
  font-weight: 500;
}

.tab-trigger.active {
  background: #8b5cf6;
  color: white;
}

.tab-trigger:hover:not(.active) {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.tab-content {
  display: none;
}

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

/* Trip Type */
.trip-type {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
}

.radio-label:hover {
  color: #8b5cf6;
}

.radio-label input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: #8b5cf6;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #1f2937;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.input-icon.accent {
  color: #8b5cf6;
}

.input-wrapper:hover .input-icon {
  color: #8b5cf6;
}

.form-group input {
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #f9fafb;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-group input:hover {
  border-color: #8b5cf6;
}

.form-group input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group small {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Form Footer */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
}

.guarantee .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #8b5cf6;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: #8b5cf6;
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary .icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .icon {
  transform: scale(1.1);
}

/* Tab Placeholder */
.tab-placeholder {
  text-align: center;
  padding: 3rem 0;
}

.placeholder-icon {
  width: 4rem;
  height: 4rem;
  color: #8b5cf6;
  margin: 0 auto 1rem;
}

.tab-placeholder h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.tab-placeholder p {
  color: #6b7280;
}

/* Destinations Section */
.destinations {
  padding: 5rem 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  color: #8b5cf6;
  font-weight: 500;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 2rem;
}

.destination-card {
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.destination-card.large {
  grid-row: span 1;
}

.card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.card-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.star {
  width: 0.75rem;
  height: 0.75rem;
  color: #fbbf24;
}

.card-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination-name {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  color: #1f2937;
}

.card-btn {
  background: #8b5cf6;
  color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}

.destination-card:hover .card-btn {
  opacity: 1;
}

.card-btn:hover {
  background: #7c3aed;
  transform: scale(1.1);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: rgba(139, 92, 246, 0.05);
}

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

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(139, 92, 246, 0.2);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: #8b5cf6;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.feature-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Partners Section */
.partners {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1f2937, #8b5cf6);
}

.partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-header h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.partners-header p {
  color: rgba(255, 255, 255, 0.8);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  opacity: 0.8;
}

.partner-logo {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
  opacity: 1;
}

.partner-logo.bold {
  font-weight: bold;
  font-size: 1.5rem;
}

.partner-logo.italic {
  font-style: italic;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0;
}

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

.footer-logo {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #8b5cf6;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 250px);
  }

  .destination-card.large {
    grid-row: span 1;
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    background-attachment: scroll;
    padding-top: 6rem;
  }

  .booking-card {
    padding: 1.5rem;
  }

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

  .tab-trigger span {
    display: none;
  }

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

  .form-footer {
    flex-direction: column;
    text-align: center;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 250px);
  }

  .partners-logos {
    gap: 1rem 2rem;
  }

  .partner-logo {
    font-size: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

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

  .booking-card {
    padding: 1rem;
  }

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

  .destinations-grid {
    gap: 1rem;
  }
}
