* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #080808;
    color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.logo span {
    color: #2563eb;
}

.subtitle {
    color: #6b7280;
    font-size: 18px;
}

.logo {
    color: white;
}

.subtitle {
    color: #a1a1aa;
}

.card {
    background: #292929;
    border: 1px solid #555;
    border-radius: 24px;
    padding: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.field-note {
  display: block;
  margin-top: 6px;

  font-size: 12px;
  color: #64748b;
}

.date-limit-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}

label {
    margin-bottom: 8px;
    font-weight: 600;
}

input,
select,
textarea {
    padding: 14px;
    border: 1px solid #3f3f46;
    border-radius: 12px;
    font-size: 15px;
    background: #111;
    color: white;
}

button {
    width: 100%;
    margin-top: 25px;
    border: none;
    background: #e95032;
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
}

button:hover {
    background: #ef5337;
}

.results {
    margin-top: 40px;
    display: none;
}

.results h2 {
    margin-bottom: 20px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th {
  background: #292929;
  color: #f8fafc;
  border: 1px solid #3f3f46;
}

td {
  background: #111;
  border: 1px solid #2a2a2a;
  color: #e5e7eb;
}

.time-col {
  background: #181818 !important;
  color: #a1a1aa !important;
}

.summary {
    margin-top: 20px;
    background: #292929;
    border: 1px solid #555;
    padding: 20px;
    border-radius: 16px;
}

@media print {
  @page {
    size: A4 landscape;
    margin: 10mm;
  }

  body {
    background: white !important;
    color: #0f172a !important;
  }

  .card,
  .edit-trip-box,
  .saved-trips-box,
  button,
  .modal {
    display: none !important;
  }

  .results {
    display: block !important;
  }

  .table-wrapper {
    overflow: visible !important;
  }

  .calendar-table {
    width: 100% !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    font-size: 10px !important;
  }

  .calendar-table th,
  .calendar-table td {
    padding: 6px !important;
    height: 42px !important;
    min-width: auto !important;
  }

  .calendar-block {
    box-shadow: none !important;
    padding: 6px !important;
    border-radius: 8px !important;
    font-size: 9px !important;
  }

  .calendar-block strong {
    font-size: 9px !important;
  }

  .calendar-block span {
    font-size: 8px !important;
  }

  .time-col {
    width: 80px !important;
    font-size: 9px !important;
  }
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th {
  background: #292929;
  color: white;
  padding: 12px;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 2;
}

td {
  border: 1px solid #3f3f46;
  padding: 10px;
  min-width: 150px;
  height: 56px;
  vertical-align: top;
  font-size: 13px;
}

.time-col {
  background: #f3f4f6;
  font-weight: 700;
  color: #374151;
  width: 110px;
  position: sticky;
  left: 0;
  z-index: 1;
}

.activity-rest {
  background: #f9fafb;
  color: #9ca3af;
}

.activity-free {
  background: #ffffff;
  color: #9ca3af;
}

.activity-food {
  background: #fff7ed;
}

.activity-transport {
  background: #eff6ff;
}

.activity-main {
  background: #ecfdf5;
}

.edit-trip-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.edit-trip-box h3 {
  margin-bottom: 10px;
}

.edit-trip-box p {
  color: #6b7280;
  margin-bottom: 14px;
  font-size: 14px;
}

.edit-trip-box textarea {
  width: 100%;
  padding: 14px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  border-radius: 12px;
  font-size: 15px;
  resize: vertical;
}

.calendar-block {
  background: #1f1f1f;
  border: 1px solid #555;
  border-radius: 14px;
  padding: 12px;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.calendar-table {
  border-collapse: separate;
  border-spacing: 0;
  background: #0b0b0b;
  border-radius: 18px;
  overflow: hidden;
}

.calendar-table th {
  background: #242424;
  color: #f8fafc;
  border: 1px solid #333;
}

.calendar-table td {
  background: #0f0f0f;
  border: 1px solid #222;
  color: #e5e7eb;
}

.calendar-block:hover {
  border-color: #e95032;
  transform: translateY(-1px);
}

.calendar-block span {
  display: block;
  font-size: 12px;
  color: #a1a1aa;
  margin-top: 4px;
}

.block-actions {
  margin-top: 8px;
  display: none;
  gap: 6px;
}

.calendar-block.active .block-actions {
  display: flex;
}

.block-actions button {
  background: #e95032;
  color: white;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.empty-slot {
  background: #fafafa;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: #292929;
  color: white;
  padding: 24px;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
}

.modal-content input {
  width: 100%;
  margin: 16px 0;
}

#replacementOptions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.landing-body,
.pricing-body {
  background: #080808;
  color: #f8fafc;
}

.landing-nav {
  max-width: 1200px;
  margin: auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 24px;
  font-weight: 800;
}

.brand span {
  color: #60a5fa;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.subscribe-btn {
  text-decoration: none;
}

.nav-cta {
  color: white;
  background: #1f2937;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero-landing {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.badges-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.badge,
.popular-badge {
  display: inline-block;
  background: #111827;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.discount-badge {
  background: rgba(34, 197, 94, 0.18);

  color: #22c55e;

  border: 1px solid rgba(34, 197, 94, 0.35);

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;
}

.hero-landing h1 {
  font-size: 58px;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.primary-btn,
.subscribe-btn {
  background: #e95032;
  color: white;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 800;
  display: inline-block;
}

.secondary-btn {
  color: white;
  border: 1px solid #374151;
  padding: 16px 24px;
  border-radius: 14px;
}

.hero-preview,
.demo-box {
  background: #171717;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 24px;
}

.mock-header {
  font-weight: 800;
  margin-bottom: 18px;
}

.mock-row,
.demo-block {
  background: #222;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.mock-row span {
  color: #94a3b8;
  display: block;
  margin-bottom: 6px;
}

.features-section,
.demo-section,
.testimonials-section,
.pricing-cta,
.pricing-header {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
  text-align: center;
}

.features-section h2,
.demo-section h2,
.testimonials-section h2,
.pricing-cta h2,
.pricing-header h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.features-grid,
.testimonials-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
  margin-top: 35px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.testimonial,
.price-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  padding: 28px;
  text-align: left;
}

.feature-card p,
.testimonial,
.plan-desc,
.pricing-note,
.pricing-header p,
.demo-section p,
.pricing-cta p {
  color: #a1a1aa;
}

.testimonial span {
  display: block;
  margin-top: 16px;
  color: #71717a;
}

.pricing-grid {
  max-width: 900px;
  margin: 40px auto;
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  min-height: 560px;
}

.price-card.popular {
  background: #292929;
  border: 1px solid #555;
  transform: scale(1.03);
}

.price-card h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.price {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 10px;
}

.price span {
  font-size: 18px;
  color: #a1a1aa;
}

.subscribe-btn {
  display: block;
  text-align: center;
  margin: 30px 0;
}

.subscribe-btn.highlight {
  background: #ef5337;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.price-card li {
  margin-bottom: 16px;
  color: #e5e7eb;
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  padding-bottom: 40px;
}

@media (max-width: 850px) {
  .hero-landing,
  .features-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-landing h1 {
    font-size: 42px;
  }

  .price-card.popular {
    transform: none;
  }
}

.loading-box {
  background: #1f1f1f;
  border: 1px solid #555;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  color: white;
}

.loader {
  width: 42px;
  height: 42px;
  border: 4px solid #3f3f46;
  border-top: 4px solid #e95032;
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: spin 0.9s linear infinite;
}

.loading-box p {
  font-size: 18px;
  font-weight: 700;
  color: #f8fafc;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-actions {
  margin-top: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 14px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-buttons button {

  background: #e5e7eb;
  color: #111827;

  border: none;

  border-radius: 10px;

  padding: 8px 14px;

  font-size: 13px;
  font-weight: 700;

  width: auto;
  margin: 0;
}

.modal-link {
  display: block;
  text-align: center;
  text-decoration: none;

  background: #34a853;
  color: white;

  padding: 14px;
  border-radius: 12px;

  font-weight: 700;
  font-size: 15px;

  margin-bottom: 18px;
}

.modal-link:hover {
  background: #ef5337;
}

#blockInfoTime,
#blockInfoDestination {
  color: #a1a1aa;
  margin-top: 8px;
}

.modal-actions button {
  background: #e5e7eb;

  color: #111827;

  border: none;
  border-radius: 10px;

  padding: 10px 14px;

  font-size: 14px;
  font-weight: 700;

  margin-top: 8px;

  width: auto;
}

.modal-actions button:hover {
  background: #d1d5db;
}

.modal-close {
  text-align: center;
  margin-top: 20px;
  color: #9ca3af;
  cursor: pointer;
  font-size: 14px;
}

.modal-close:hover {
  color: white;
}

.empty-slot {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
}

.saved-trips-box {
  margin-top: 30px;
  background: #292929;
  border: 1px solid #555;
  border-radius: 24px;
  padding: 24px;
}

.saved-trips-box h3 {
  margin-bottom: 16px;
  color: #f8fafc;
}

.saved-trip-card {
  background: #1f1f1f;
  border: 1px solid #444;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.saved-trip-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.saved-trip-info strong {
  color: #f8fafc;
}

.saved-trip-info span {
  color: #a1a1aa;
  font-size: 14px;
}

.saved-trip-actions {
  display: flex;
  gap: 10px;
}

.saved-trip-actions button {
  width: auto;
  margin: 0;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
}

.danger-btn {
  background: #e5e7eb !important;
  color: #111827 !important;
}

.danger-btn:hover {
  background: #d1d5db !important;
}

@media (max-width: 700px) {
  .saved-trip-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .saved-trip-actions {
    width: 100%;
  }

  .saved-trip-actions button {
    flex: 1;
  }
}

.faq-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px 80px;
  color: #f8fafc;
}

.faq-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.faq-layout {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid #333;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 0;
}

.faq-question {
  background: transparent;
  color: #0f172a;

  border: none;

  padding: 24px 0;

  font-size: 22px;
  font-weight: 700;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: transparent;
  color: #ffffff;
}

.faq-question span {
  font-size: 20px;
  margin-left: 20px;
}

.faq-answer {
  color: #64748b;
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 24px;
}

.faq-answer p {
  margin-bottom: 18px;
}

.faq-item.active .faq-answer {
    background: transparent;
    display: block;
}

@media (max-width: 850px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-image-box img {
    height: 360px;
  }

  .faq-section h2 {
    font-size: 34px;
  }
}

.ratings-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  color: #f8fafc;
}

.ratings-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 42px;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rating-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 34px;
  min-height: 330px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.rating-card p {
  color: #f8fafc;
  line-height: 1.7;
  font-size: 17px;
}

.rating-footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-footer strong {
  color: #ffffff;
  font-size: 16px;
}

.rating-footer span {
  color: #8b8b8b;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

@media (max-width: 850px) {
  .ratings-grid {
    grid-template-columns: 1fr;
  }

  .ratings-section h2 {
    font-size: 34px;
  }
}

.new-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.new-hero h1 {
  max-width: 980px;
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 40px;
}

.hero-points {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin-bottom: 30px;
}

.hero-points div {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d6dbe3;

  padding: 22px 0;

  font-size: 24px;
  font-weight: 600;
  font-family: Inter, Arial, sans-serif;

  color: #0f172a;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-warning {
  color: #f8fafc;
  font-size: 20px;
  margin-bottom: 32px;
}

.before-after {
  background: #111;
  border: 1px solid #333;
  border-radius: 28px;
  padding: 30px;
}

.before-after h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.ba-content {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 20px;
  align-items: center;
}

.before-card,
.calendar-preview-card,
.maps-card {
  background: #1f1f1f;
  border: 1px solid #444;
  border-radius: 18px;
  padding: 20px;
}

.ba-label {
  display: inline-block;
  background: #292929;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
  color: #a1a1aa;
  font-weight: 800;
}

.before-card {
  background: #1f1f1f;
  border: 1px solid #444;
  border-radius: 18px;
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.arrow {
  font-size: 42px;
  color: #e95032;
}

.after-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calendar-preview-card div {
  margin-top: 10px;
  color: #d1d5db;
}

.photo-card img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.maps-card {
  background: #34a853;
  color: white;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 850px) {
  .new-hero {
    grid-template-columns: 1fr;
  }

  .new-hero h1 {
    font-size: 44px;
  }

  .ba-content {
  display: grid;
  grid-template-columns: 1.2fr auto 1.4fr;
  gap: 22px;
  align-items: center;
}

  .arrow {
    text-align: center;
    transform: rotate(90deg);
  }
}

.solution-highlight {
  background: linear-gradient(
    135deg,
    rgba(52, 168, 83, 0.22),
    rgba(233, 80, 50, 0.12)
  );
  border: 1px solid rgba(52, 168, 83, 0.45);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 0 40px rgba(52, 168, 83, 0.12);
}

.solution-label {
  display: inline-block;
  background: rgba(52, 168, 83, 0.22);
  color: #86efac;
  border: 1px solid rgba(52, 168, 83, 0.45);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 13px;
}

.landing-body {
  background: #0b0f14;
  color: #f8fafc;
}

.primary-btn {
  padding: 20px 34px;
  font-size: 18px;
  border-radius: 16px;
}

.primary-btn:hover,
.subscribe-btn:hover,
button:hover {
  background: #2f9a4b;
}

.community-line {
  font-size: 24px;
  font-weight: 800;
  color: #15803d;
  margin-top: 22px;
}

.calendar-showcase,
.comparison-section {
  max-width: 1200px;
  margin: 90px auto;
  padding: 0 20px;
  text-align: center;
}

.calendar-showcase h2,
.comparison-section h2 {
  font-size: 42px;
  margin-bottom: 14px;
}

.calendar-showcase p {
  color: #a1a1aa;
  margin-bottom: 32px;
  font-size: 18px;
}

.showcase-calendar {
  background: #111827;
  border: 1px solid #263241;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.showcase-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1f2937;
  border-radius: 16px;
  overflow: hidden;
}

.showcase-header span {
  padding: 16px;
  font-weight: 800;
  border-right: 1px solid #374151;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.showcase-block {
  background: #172033;
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 22px;
  min-height: 130px;
  text-align: left;
}

.showcase-block strong {
  display: block;
  margin-bottom: 14px;
  color: white;
}

.showcase-block span {
  color: #a1a1aa;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.comparison-card {
  border-radius: 24px;
  padding: 32px;
  text-align: left;
}

.comparison-card.negative {
  background: #151515;
  border: 1px solid #333;
}

.comparison-card.positive {
  background: rgba(52, 168, 83, 0.12);
  border: 1px solid rgba(52, 168, 83, 0.4);
}

.comparison-card h3 {
  font-size: 30px;
  margin-bottom: 24px;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
}

.comparison-card li {
  margin-bottom: 16px;
  font-weight: 700;
  color: #e5e7eb;
}

@media (max-width: 850px) {
  .showcase-header,
  .showcase-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LIGHT PREMIUM THEME
   ========================= */

body,
.landing-body,
.pricing-body {
  background: #f8f6f2 !important;
  color: #0f172a !important;
}

/* Logo */

.brand,
.logo,
h1,
h2,
h3,
h4 {
  color: #0f172a !important;
}

/* Hero */

.before-after,
.hero-preview,
.demo-box,
.feature-card,
.testimonial,
.price-card,
.rating-card,
.faq-item,
.showcase-calendar,
.comparison-card,
.saved-trip-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
}

/* Textes secondaires */

.subtitle,
.hero-text,
.plan-desc,
.pricing-note,
.faq-answer,
.rating-footer span,
.showcase-block span,
.calendar-showcase p {
  color: #64748b !important;
}


/* Hero points */

.hero-points div {
  color: #0f172a !important;
}

/* Avant / après */

.before-card {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
}

.ba-label {
  background: #e2e8f0 !important;
  color: #334155 !important;
}

.solution-highlight {
  background: rgba(52,168,83,0.08) !important;
  border: 1px solid rgba(52,168,83,0.25) !important;
}

.solution-label {
  background: rgba(52,168,83,0.15) !important;
  color: #15803d !important;
}

/* Showcase calendrier */

.showcase-calendar {
  background: white !important;
}

.showcase-header {
  background: #2563eb !important;
}

.showcase-header span {
  color: white !important;
}

.showcase-block {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
}

.showcase-block strong {
  color: #0f172a !important;
}

/* Comparaison */

.comparison-card.negative {
  background: #ffffff !important;
}

.comparison-card.positive {
  background: rgba(52,168,83,0.08) !important;
}

.comparison-card li {
  color: #334155 !important;
}

/* Ratings */

.rating-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rating-card p {
  color: #334155 !important;
}

.rating-footer strong {
  color: #0f172a !important;
}

/* FAQ */

.faq-section,
.ratings-section,
.calendar-showcase,
.comparison-section {
  color: #0f172a !important;
}

.faq-list {
  border-top: 1px solid #e5e7eb !important;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 0;
}

.faq-question {
  background: transparent;
  color: #0f172a;

  border: none;

  padding: 24px 0;

  font-size: 22px;
  font-weight: 700;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Pricing */

.price-card.popular {
  background: #ffffff !important;
  border: 2px solid #34a853 !important;
  box-shadow: 0 20px 60px rgba(52,168,83,0.12);
}

.badge,
.popular-badge {
  background: #e8f5e9 !important;
  color: #15803d !important;
}

.discount-badge {
  background: #22c55e !important;
  color: white !important;
}

/* Section titres */

.calendar-showcase h2,
.comparison-section h2,
.ratings-section h2,
.faq-section h2 {
  color: #0f172a !important;
}

/* Ligne communauté */

.community-line {
  color: #16a34a !important;
}

/* Travel blue primary accent */

.primary-btn,
.subscribe-btn,
button {
  background: #2563eb !important;
  color: white !important;
}

.primary-btn:hover,
.subscribe-btn:hover,
button:hover {
  background: #1d4ed8 !important;
  color: white !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

/* Keep green for positive badges / success elements */

.badge,
.popular-badge,
.discount-badge,
.solution-label,
.community-line {
  color: #15803d !important;
}

.discount-badge {
  background: #22c55e !important;
  color: white !important;
}

.solution-highlight {
  background: rgba(37, 99, 235, 0.06) !important;
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
}

.maps-card,
.modal-link {
  background: #34a853 !important;
}

/* ===== FAQ FIX ===== */

.faq-question {
  background: transparent !important;
  color: #0f172a !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 24px 0 !important;
  margin: 0 !important;
  width: 100% !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  text-align: left !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.faq-question:hover {
  background: transparent !important;
  color: #0f172a !important;
}

.faq-answer {
  display: none;
  color: #64748b !important;
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-list {
  border-top: 1px solid #e5e7eb !important;
}

.faq-item {
  background: transparent !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 0 !important;
}

/* ===== AUTH PAGES FIX ===== */

.pricing-body input {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}

.pricing-body input::placeholder {
  color: #64748b !important;
}

.pricing-body .price-card a {
  color: #1d4ed8 !important;
  font-weight: 700;
}

.pricing-body .price-card a:hover {
  color: #1d4ed8 !important;
}

.pricing-body .price-card {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* ===== APP LIGHT THEME FIX ===== */

body:not(.landing-body):not(.pricing-body) {
  background: #f8f6f2 !important;
  color: #0f172a !important;
}

/* Main form card */

.card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06) !important;
}

label,
.results h2,
.saved-trips-box h3 {
  color: #0f172a !important;
}

input,
select,
textarea {
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}

input::placeholder,
textarea::placeholder {
  color: #64748b !important;
}

/* Loading */

.loading-box {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #0f172a !important;
}

.loading-box p {
  color: #0f172a !important;
}

/* Saved trips */

.saved-trips-box {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05) !important;
}

.saved-trip-card {
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important;
}

.saved-trip-info strong {
  color: #0f172a !important;
}

.saved-trip-info span {
  color: #64748b !important;
}

/* Calendar */

.calendar-table {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
}

.calendar-table th {
  background: #2563eb !important;
  color: white !important;
  border: 1px solid #1d4ed8 !important;
}

.calendar-table td {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #0f172a !important;
}

.time-col {
  background: #f1f5f9 !important;
  color: #64748b !important;
}

.empty-slot {
  background: #f8fafc !important;
  border: 1px solid #e5e7eb !important;
}

.calendar-block {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important;
}

.calendar-block:hover {
  border-color: #2563eb !important;
}

.calendar-block strong {
  color: #0f172a !important;
}

.calendar-block span {
  color: #64748b !important;
}

/* Modal */

.modal-content {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #e5e7eb !important;
}

#blockInfoTime,
#blockInfoDestination {
  color: #64748b !important;
}

.auth-link {
  color: #2563eb !important;
  font-weight: 700;
  text-decoration: none;
}

.auth-link:hover {
  color: #1d4ed8 !important;
  text-decoration: underline;
}