/* =====================================================
   Eventra Landing Page - Modern Clean Design
   ===================================================== */

/* Override base styles with higher specificity */
body.landing-page { 
  overflow-x: hidden !important; 
  background: white !important;
}

/* Reset main-content padding */
body.landing-page .main-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure landing sections display properly */
body.landing-page .landing-hero,
body.landing-page .landing-stats,
body.landing-page .landing-features,
body.landing-page .landing-how,
body.landing-page .landing-showcase,
body.landing-page .landing-types,
body.landing-page .landing-pricing,
body.landing-page .landing-about,
body.landing-page .landing-faq,
body.landing-page .landing-contact,
body.landing-page .landing-cta {
  display: block !important;
  visibility: visible !important;
  position: relative !important;
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Section Styles ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-heading {
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 14px;
}
.section-subheading {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   1. HERO
   ===================================================== */
.landing-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(165deg, #fff 0%, var(--primary-lighter) 50%, #fff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text-col { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(238,132,36,0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  margin-bottom: 24px;
  border: 1px solid rgba(238,132,36,0.15);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(238,132,36,0.3);
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(238,132,36,0.4);
  transform: translateY(-2px);
}
.btn-hero-primary svg { transition: transform 0.3s ease; }
.btn-hero-primary:hover svg { transform: translateX(-4px); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: white;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-trust-avatars {
  display: flex;
}
.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid white;
  margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }
.hero-trust-text {
  font-size: 13px;
  color: var(--text-light);
}

/* Hero image */
.hero-image-col { position: relative; z-index: 2; }
.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
}
.hero-float-card-1 { bottom: 20px; right: -24px; animation-delay: 0s; }
.hero-float-card-2 { top: 20px; left: -24px; animation-delay: 2s; }

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card-num { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.float-card-label { font-size: 12px; color: var(--text-light); }

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

/* Hero BG shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-shape-1 {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -100px; left: -100px;
}
.hero-shape-2 {
  width: 250px; height: 250px;
  background: var(--success);
  bottom: -80px; right: -60px;
}
.hero-shape-3 {
  width: 180px; height: 180px;
  background: var(--info);
  top: 40%; right: 10%;
}

/* =====================================================
   2. STATS
   ===================================================== */
.landing-stats {
  padding: 0;
  margin-top: -36px;
  position: relative;
  z-index: 10;
}
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: white;
  border-radius: 20px;
  padding: 32px 56px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 700px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 14px;
  color: var(--text-light);
  font-weight: var(--fw-medium);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* =====================================================
   3. FEATURES
   ===================================================== */
.landing-features {
  padding: 100px 0 80px;
  background: var(--gray-50);
}
.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: transparent;
}
.feat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-card h3 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 0 0 10px;
}
.feat-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   4. HOW IT WORKS
   ===================================================== */
.landing-how {
  padding: 80px 0;
  background: white;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.how-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(238,132,36,0.25);
  flex-shrink: 0;
}
.how-step-content h3 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 0 0 8px;
}
.how-step-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  max-width: 180px;
}
.how-step-line {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
  flex-shrink: 0;
}

/* =====================================================
   5. SHOWCASE (Zigzag)
   ===================================================== */
.landing-showcase {
  padding: 80px 0;
  background: var(--gray-50);
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row-reverse { direction: rtl; }
.showcase-row-reverse > * { direction: rtl; }

.showcase-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.showcase-text h3 {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 0 0 12px;
}
.showcase-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}
.showcase-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
}
.showcase-img img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

/* =====================================================
   6. EVENT TYPES
   ===================================================== */
.landing-types {
  padding: 80px 0;
  background: white;
}
.types-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.type-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}
.type-item:hover {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 10px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.type-item-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.type-item h3 {
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 0 0 8px;
}
.type-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   7. PRICING (Free)
   ===================================================== */
.landing-pricing {
  padding: 80px 0;
  background: linear-gradient(165deg, var(--primary-lighter) 0%, #fff 100%);
}
.pricing-single-card {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border: 2px solid var(--primary);
  position: relative;
}
.pricing-free-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}
.pricing-single-card h3 {
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 12px 0 8px;
}
.pricing-free-price {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
}
.pricing-free-price span {
  font-size: 18px;
  color: var(--text-light);
  font-weight: var(--fw-medium);
}
.pricing-free-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: start;
}
.pricing-free-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.pricing-free-list li:last-child { border-bottom: none; }
.pricing-free-list svg { flex-shrink: 0; }

.btn-pricing-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(238,132,36,0.3);
}
.btn-pricing-start:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(238,132,36,0.4);
  transform: translateY(-2px);
}

/* =====================================================
   8. ABOUT US
   ===================================================== */
.landing-about {
  padding: 80px 0;
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.about-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: 14px;
  transition: all 0.2s ease;
}
.about-value:hover {
  background: var(--primary-lighter);
}
.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(238,132,36,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-value span {
  font-size: 13px;
  color: var(--text-light);
}

/* =====================================================
   9. FAQ
   ===================================================== */
.landing-faq {
  padding: 80px 0;
  background: var(--gray-50);
}
.faq-items {
  max-width: 680px;
  margin: 0 auto;
}
.faq-detail {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  cursor: pointer;
}
.faq-detail:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.faq-detail[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(238,132,36,0.08);
}
.faq-detail summary {
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  outline: none;
  user-select: none;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-detail summary::-webkit-details-marker { display: none; }
.faq-detail summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 8px;
}
.faq-detail[open] summary::after {
  transform: rotate(45deg);
}
.faq-detail p {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* =====================================================
   10. CONTACT
   ===================================================== */
.landing-contact {
  padding: 80px 0;
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: 14px;
  transition: all 0.2s ease;
}
.contact-info-card:hover { background: var(--primary-lighter); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin: 0 0 4px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-main);
  background: white;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(238,132,36,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(238,132,36,0.25);
}
.btn-contact-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(238,132,36,0.35);
  transform: translateY(-2px);
}

/* =====================================================
   11. CTA
   ===================================================== */
.landing-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}
.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin: 0 0 14px;
}
.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(238,132,36,0.4);
}
.btn-cta-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 8px 30px rgba(238,132,36,0.5);
  transform: translateY(-2px);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .features-cards { grid-template-columns: repeat(2, 1fr); }
  .types-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .landing-container { padding: 0 16px; }
  
  .landing-hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-float-card-1 { right: 8px; bottom: 8px; }
  .hero-float-card-2 { left: 8px; top: 8px; }

  .stats-bar { 
    flex-direction: column;
    gap: 20px;
    padding: 28px 32px;
  }
  .stat-divider { width: 60px; height: 1px; }

  .section-heading { font-size: 28px; }
  
  .features-cards { grid-template-columns: 1fr; }
  
  .how-steps { flex-direction: column; align-items: center; gap: 0; }
  .how-step-line { width: 2px; height: 32px; }
  
  .showcase-row,
  .showcase-row-reverse { grid-template-columns: 1fr; gap: 28px; }
  .showcase-row-reverse { direction: rtl; }
  
  .types-cards { grid-template-columns: repeat(2, 1fr); }
  
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-text .section-heading { text-align: center !important; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .cta-box h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; }
  
  .types-cards { grid-template-columns: 1fr; }
  
  .stats-bar { padding: 20px 24px; gap: 16px; }
  .stat-num { font-size: 28px; }
  
  .pricing-single-card { padding: 36px 24px; }
  .pricing-free-price { font-size: 44px; }
  
  .contact-form { padding: 24px 20px; }
}

