/* Front Page v2 Styles - Inspired by sotravel.com */

:root {
  --wondex-blue: #6ec1e4;
  --wondex-blue-dark: #3a8ecb;
  --wondex-bg: #f7fbfd;
  --wondex-card-bg: #fff;
  --wondex-radius: 20px;
  --wondex-shadow: 0 4px 24px rgba(0,0,0,0.07);
  --wondex-text: #222;
  --wondex-muted: #888;
}

body {
  background: var(--wondex-bg);
  color: var(--wondex-text);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.wondex-home-v2 main, .wondex-home-v2 {
  background: var(--wondex-bg);
}

/* HERO */
.wondex-v2-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.wondex-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
}
.wondex-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  max-width: 700px;
  margin: 0 auto;
}
.wondex-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5em;
}
.wondex-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 1.5em;
}
.wondex-btn {
  display: inline-block;
  padding: 0.9em 2.2em;
  border-radius: 999px;
  background: var(--wondex-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  box-shadow: var(--wondex-shadow);
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wondex-btn:hover, .wondex-btn:focus {
  background: var(--wondex-blue-dark);
  box-shadow: 0 6px 32px rgba(0,0,0,0.12);
}

/* PUBLISHERS */
.wondex-v2-publishers {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-top: 0;
  background: transparent;
}
/* --- Publishers: 4 Columns on Desktop (Grid) --- */
.wondex-publishers-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2em;
  max-width: 950px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.wondex-publisher-card {
  background: var(--wondex-card-bg);
  border-radius: var(--wondex-radius);
  box-shadow: var(--wondex-shadow);
  padding: 1.2em 1.5em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1100px) {
  .wondex-publishers-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .wondex-publishers-list {
    grid-template-columns: 1fr;
  }
}
.wondex-publisher-logo {
  max-width: 80px;
  max-height: 40px;
  margin-bottom: 0.7em;
}
.wondex-publisher-quote {
  font-size: 0.98rem;
  color: var(--wondex-muted);
  margin-bottom: 0.5em;
}
.wondex-publisher-source {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--wondex-blue-dark);
}

/* SECTION TITLES */
.wondex-section-title {
  text-align: center;
  margin: 2.5em 0 1.2em 0;
}
.wondex-section-title h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.2em;
}
.wondex-section-title p {
  color: var(--wondex-blue-dark);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* PARTICIPANT TESTIMONIALS */
.wondex-v2-participant-testimonials {
  background: #eaf6fb;
  padding: 2.5em 0 1.5em 0;
}
.wondex-participant-testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5em;
  max-width: 1100px;
  margin: 0 auto 1.5em auto;
}
.wondex-participant-testimonial-card {
  background: var(--wondex-card-bg);
  border-radius: var(--wondex-radius);
  box-shadow: var(--wondex-shadow);
  padding: 1.5em 1.2em 1.2em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 340px;
}
.wondex-participant-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--wondex-radius);
  margin-bottom: 1em;
}
.wondex-participant-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  color: var(--wondex-blue-dark);
}
.wondex-participant-testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--wondex-text);
  margin: 0 0 0.7em 0;
  line-height: 1.5;
}
.wondex-participant-reviewer {
  font-size: 0.98rem;
  color: var(--wondex-muted);
  margin-bottom: 0.2em;
}
.wondex-participant-reviewer-note {
  font-size: 0.92rem;
  color: var(--wondex-muted);
}
.wondex-participant-cta {
  text-align: center;
  margin-top: 1.5em;
}

/* WHY CHOOSE US */
.wondex-v2-why-choose-us {
  background: var(--wondex-bg);
  padding: 2.5em 0 1.5em 0;
}
.wondex-why-choose-us-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  max-width: 1100px;
  margin: 0 auto 1.5em auto;
}
@media (max-width: 1100px) {
  .wondex-why-choose-us-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .wondex-why-choose-us-list {
    grid-template-columns: 1fr;
  }
}
.wondex-why-card {
  background: #222 url('') center/cover no-repeat;
  border-radius: var(--wondex-radius);
  box-shadow: var(--wondex-shadow);
  color: #fff;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5em 1.2em 1.2em 1.2em;
  overflow: hidden;
}
.wondex-why-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: var(--wondex-radius);
  opacity: 0.85;
}
.wondex-why-title {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.wondex-why-card blockquote {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.7em 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.wondex-why-reviewer {
  position: relative;
  z-index: 2;
  font-size: 0.98rem;
  color: #e0e0e0;
}
.wondex-why-cta {
  text-align: center;
  margin-top: 1.5em;
}

/* FAQ */
.wondex-v2-faq {
  background: #fff;
  padding: 2.5em 0 2em 0;
}
.wondex-faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.wondex-faq-item {
  background: var(--wondex-card-bg);
  border-radius: var(--wondex-radius);
  box-shadow: var(--wondex-shadow);
  margin-bottom: 1em;
  overflow: hidden;
}
.wondex-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wondex-text);
  padding: 1.1em 1.5em 1.1em 1.2em;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
}
.wondex-faq-question:hover, .wondex-faq-question[aria-expanded="true"] {
  background: #f0f7fa;
}
.wondex-faq-answer {
  padding: 1.1em 1.5em 1.1em 1.2em;
  font-size: 1.05rem;
  color: var(--wondex-muted);
  border-top: 1px solid #e0e0e0;
}
.chevron {
  transition: transform 0.2s;
}

/* Responsive */
@media (max-width: 900px) {
  .wondex-participant-testimonials-list,
  .wondex-why-choose-us-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .wondex-hero-content h1 {
    font-size: 2rem;
  }
  .wondex-section-title h2 {
    font-size: 1.3rem;
  }
  .wondex-participant-testimonials-list,
  .wondex-why-choose-us-list {
    grid-template-columns: 1fr;
  }
  .wondex-publishers-list {
    flex-direction: column;
    align-items: center;
  }
  .wondex-publisher-card {
    min-width: 140px;
    max-width: 90vw;
  }
} 