/* =============================================
   MARKETING WEBSITE STYLES
   ============================================= */

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-100);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--neutral-900);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--neutral-600);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-600);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 50%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-6);
}

.hero-badge-icon {
  font-size: var(--font-size-lg);
}

.hero-title {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--neutral-900);
}

.hero-title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--neutral-600);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-10);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-600);
}

.hero-stat-label {
  font-size: var(--font-size-sm);
  color: var(--neutral-500);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background: linear-gradient(
    135deg,
    var(--primary-200) 0%,
    var(--primary-300) 100%
  );
}

.hero-floating-card {
  position: absolute;
  background: white;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card-1 {
  top: 10%;
  left: -60px;
  animation-delay: 0s;
}

.hero-floating-card-2 {
  bottom: 20%;
  right: -40px;
  animation-delay: 1s;
}

.hero-floating-card-3 {
  bottom: 10%;
  left: -30px;
  animation-delay: 0.5s;
}

.floating-card-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.floating-card-icon {
  font-size: 1.5rem;
}

.floating-card-text {
  font-weight: var(--font-weight-semibold);
  color: var(--neutral-800);
}

.floating-card-sub {
  font-size: var(--font-size-xs);
  color: var(--neutral-500);
  margin-top: 2px;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--primary-50);
  color: var(--primary-600);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--neutral-500);
  line-height: var(--line-height-relaxed);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.feature-content p {
  font-size: var(--font-size-base);
  color: var(--neutral-500);
  line-height: var(--line-height-relaxed);
}

/* =============================================
   TRIP PLANNING FORM SECTION
   ============================================= */
.trip-form-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
}

.trip-form-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}

.trip-form-text h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-6);
}

.trip-form-text p {
  font-size: var(--font-size-lg);
  color: var(--neutral-500);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.trip-form-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--neutral-700);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--success-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}

.trip-form-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

.trip-form-card h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-6);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.travel-style-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.style-option {
  padding: var(--space-3) var(--space-2);
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.style-option:hover {
  background: var(--neutral-200);
}

.style-option.selected {
  background: var(--primary-50);
  border-color: var(--primary-500);
}

.style-option-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-1);
}

.style-option-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--neutral-700);
}

/* Traveler Type Options */
.traveler-type-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.traveler-option {
  padding: var(--space-4) var(--space-2);
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.traveler-option:hover {
  background: var(--neutral-200);
  transform: translateY(-2px);
}

.traveler-option.selected {
  background: var(--primary-50);
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.traveler-option-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-2);
}

.traveler-option-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--neutral-700);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  background: var(--bg-dark);
  color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.about-image-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(
    135deg,
    var(--primary-700) 0%,
    var(--primary-500) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-text h2 {
  font-size: var(--font-size-4xl);
  color: white;
  margin-bottom: var(--space-6);
}

.about-text p {
  font-size: var(--font-size-lg);
  color: var(--neutral-300);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.about-value {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-value-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.contact-info h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-6);
}

.contact-info > p {
  font-size: var(--font-size-lg);
  color: var(--neutral-500);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-method-text {
  color: var(--neutral-500);
  font-size: var(--font-size-sm);
}

.contact-method-value {
  font-weight: var(--font-weight-semibold);
  color: var(--neutral-800);
}

.contact-form-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.contact-form-card h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-6);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--neutral-900);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand p {
  color: var(--neutral-400);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--neutral-800);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-600);
  color: white;
}

.footer-column h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-5);
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  color: var(--neutral-400);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--neutral-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--neutral-500);
  font-size: var(--font-size-sm);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  color: var(--neutral-500);
  font-size: var(--font-size-sm);
}

.footer-legal a:hover {
  color: white;
}

/* =============================================
   LOADING PAGE STYLES
   ============================================= */
.loading-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 50%, #fff7ed 100%);
  padding: var(--space-8);
}

.loading-content {
  text-align: center;
  max-width: 500px;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-12);
  color: var(--neutral-900);
}

.loading-spinner-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-10);
}

.loading-spinner {
  width: 100%;
  height: 100%;
  border: 4px solid var(--neutral-200);
  border-top-color: var(--primary-500);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-spinner-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
}

.loading-title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
}

.loading-subtitle {
  font-size: var(--font-size-lg);
  color: var(--neutral-500);
  margin-bottom: var(--space-10);
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  opacity: 0.5;
  transition: all var(--transition-normal);
}

.loading-step.active {
  opacity: 1;
  box-shadow: var(--shadow-md);
}

.loading-step.completed {
  opacity: 1;
}

.loading-step-icon {
  width: 40px;
  height: 40px;
  background: var(--neutral-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.loading-step.active .loading-step-icon {
  background: var(--primary-100);
  color: var(--primary-600);
}

.loading-step.completed .loading-step-icon {
  background: var(--success-light);
  color: var(--success);
}

.loading-step-text {
  font-weight: var(--font-weight-medium);
  color: var(--neutral-700);
}

.loading-progress {
  margin-top: var(--space-10);
}

.loading-progress-bar {
  height: 4px;
  background: var(--neutral-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loading-progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 0.5s ease;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1200px) {
  .hero-title {
    font-size: var(--font-size-5xl);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .trip-form-container,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .travel-style-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}
