/* ============ Stats strip ============ */
.stats-strip {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid rgba(13,61,31,0.08);
}
.stats-strip .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  padding: 32px 24px;
  border-radius: var(--r-lg);
  background: white;
  border: 1px solid rgba(13,61,31,0.08);
  transition: transform .2s var(--ease-snappy), box-shadow .2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-card .num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green-800);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-card .num .suffix { font-size: 24px; color: var(--yellow-600); }
.stat-card .lbl { margin-top: 12px; color: var(--ink-500); font-size: 15px; font-weight: 500; }
.stat-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
@media (max-width: 900px) { .stats-strip .grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Fleet ============ */
.fleet {
  background: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.fleet-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fleet-tabs {
  display: inline-flex;
  background: white;
  border: 1px solid rgba(13,61,31,0.10);
  border-radius: var(--r-pill);
  padding: 6px;
}
.fleet-tabs button {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-500);
  transition: all .2s var(--ease-snappy);
}
.fleet-tabs button.active {
  background: var(--green-800);
  color: white;
}
.fleet-tabs button:not(.active):hover { color: var(--ink-900); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-card {
  background: white;
  border: 1px solid rgba(13,61,31,0.10);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s var(--ease-snappy), box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}
.fleet-card .photo {
  height: 220px;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  position: relative;
  overflow: hidden;
}
.fleet-card .photo .ph { position: absolute; inset: 0; }
.fleet-card .photo .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink-900);
  color: white;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
}
.fleet-card .photo .tag.featured { background: var(--yellow-500); color: var(--ink-900); }
.fleet-card .photo .status {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--green-800);
}
.fleet-card .photo .status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); animation: pulse 1.6s infinite; }
.fleet-card .photo .status.busy { color: var(--yellow-700); }
.fleet-card .photo .status.busy .dot { background: var(--yellow-600); }

.fleet-card .body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fleet-card .row1 {
  display: flex; justify-content: space-between; align-items: start; margin-bottom: 8px;
}
.fleet-card .name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.fleet-card .price { font-size: 14px; font-weight: 700; color: var(--green-800); text-align: right; }
.fleet-card .price small { display: block; color: var(--ink-500); font-weight: 500; font-size: 11px; }
.fleet-card .meta { color: var(--ink-500); font-size: 14px; margin-bottom: 16px; }
.fleet-card .specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(13,61,31,0.08);
  border-bottom: 1px solid rgba(13,61,31,0.08);
  margin-bottom: 16px;
}
.fleet-card .spec { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-700); font-weight: 500; }
.fleet-card .spec .ic { color: var(--green-700); }
.fleet-card .actions { display: flex; gap: 8px; margin-top: auto; }
.fleet-card .actions .btn-detail {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  color: var(--ink-900);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: background .2s;
}
.fleet-card .actions .btn-detail:hover { background: var(--green-100); }
.fleet-card .actions .btn-book {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--r-pill);
  background: var(--green-800);
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: background .2s;
}
.fleet-card .actions .btn-book:hover { background: var(--green-900); }

/* ============ Trips ============ */
.trips {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.trips-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 20px;
  margin-top: 48px;
}
.trip-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-100);
  cursor: pointer;
  transition: transform .25s var(--ease-snappy);
}
.trip-card:hover { transform: scale(1.015); }
.trip-card .ph { position: absolute; inset: 0; }
.trip-card .gloss {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,29,20,0.75) 100%);
}
.trip-card .meta {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  color: white;
}
.trip-card .meta .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.trip-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.trip-card .date { font-size: 13px; opacity: 0.85; }
.trip-card.big { grid-row: span 2; }
.trip-card.big h3 { font-size: 36px; }

@media (max-width: 900px) {
  .trips-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .trip-card.big { grid-row: span 1; }
}

/* ============ Reviews ============ */
.reviews {
  padding: 100px 0;
  background: var(--ink-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,176,86,0.25), transparent 70%);
  pointer-events: none;
}
.reviews .section-sub { color: rgba(255,255,255,0.7); }
.reviews .eyebrow {
  background: rgba(255,255,255,0.10);
  color: var(--yellow-500);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s var(--ease-snappy);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,208,41,0.3);
}
.review-card .stars {
  display: flex; gap: 2px; color: var(--yellow-500); margin-bottom: 16px;
}
.review-card blockquote {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  flex: 1;
}
.review-card blockquote::before { content: '"'; color: var(--yellow-500); font-size: 24px; font-weight: 700; }
.review-card blockquote::after { content: '"'; color: var(--yellow-500); font-size: 24px; font-weight: 700; }
.review-card .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.10); }
.review-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.review-card .who .name { font-weight: 700; font-size: 14px; }
.review-card .who .role { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============ CTA ============ */
.cta-block {
  padding: 100px 0;
  background: var(--paper);
}
.cta-card {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,41,0.25), transparent 65%);
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,176,86,0.4), transparent 65%);
}
.cta-card .inner { position: relative; z-index: 2; }
.cta-card h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; letter-spacing: -0.035em; }
.cta-card p { font-size: 18px; opacity: 0.85; max-width: 540px; margin: 0 auto 36px; line-height: 1.5; }
.cta-card .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 { color: white; font-size: 14px; margin-bottom: 18px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a:hover { color: var(--yellow-500); }
.footer .brand-line { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 22px; color: white; margin-bottom: 16px; }
.footer .desc { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer .socials { display: flex; gap: 10px; margin-top: 20px; }
.footer .socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer .socials a:hover { background: var(--green-700); color: white; }
.footer-bot {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
