/* TripValet — TripValet — Home */


:root {
  --deep: #082770;
  --tropical: #205EB6;
  --sky: #5A9DDD;
  --sky-light: #d4edfb;
  --white: #ffffff;
  --cloud: #f0f8ff;
  --sand: #fffbf4;
  --gold: #C9A84C;
  --text: #082770;
  --text-mid: #2d5490;
  --text-body: #2c3e6b;
  --gradient: linear-gradient(135deg, #082770 0%, #205EB6 55%, #5A9DDD 100%);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', 'Open Sans', sans-serif; background: var(--white); color: var(--text-body); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,39,112,0.08);
  box-shadow: 0 2px 24px rgba(8,39,112,0.07);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { width: 150px; height: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-mid); font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.2px; transition: color 0.2s; }
.nav-links a:hover { color: var(--tropical); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { color: var(--tropical); font-size: 14px; font-weight: 600; text-decoration: none; padding: 8px 16px; border-radius: 6px; transition: background 0.2s; }
.nav-login:hover { background: var(--sky-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 132px 24px 100px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to bottom, rgba(8,39,112,0.42) 0%, rgba(8,39,112,0.38) 45%, rgba(8,39,112,0.55) 100%),
    url('https://images.unsplash.com/photo-1602002418082-a4443e081dd1?w=1800&q=85') center 60%/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: white; margin-bottom: 24px;
  padding: 7px 20px; border: 1px solid rgba(255,255,255,0.5); border-radius: 40px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  animation: fadeUp 0.7s ease both;
}
.hero-kicker-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
  animation: pulse-green 2s infinite;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 7.5vw, 84px);
  color: var(--white); line-height: 1.03;
  margin-bottom: 26px;
  animation: fadeUp 0.7s 0.12s ease both;
  text-shadow: 0 2px 32px rgba(8,39,112,0.3);
}
.hero h1 em { font-style: italic; color: #93d8f8; }
.hero-sub {
  font-size: 19px; color: rgba(255,255,255,0.96); line-height: 1.7;
  max-width: 640px; margin: 0 auto 60px;
  animation: fadeUp 0.7s 0.22s ease both;
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(8,39,112,0.6);
}
.hero-sub strong { font-weight: 600; color: #ffffff; }

/* JOURNEY CARDS */
.path-row {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.34s ease both;
}
.path-card {
  border-radius: 20px; padding: 32px 28px;
  width: 252px; cursor: pointer; text-decoration: none;
  transition: transform 0.32s cubic-bezier(.22,.68,0,1.2), box-shadow 0.32s;
  position: relative; overflow: hidden;
  background: #1a4fa0;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(4,14,40,0.22);
  text-align: left;
}
.path-card:hover { transform: translateY(-10px); box-shadow: 0 24px 56px rgba(4,14,40,0.38); }
.path-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.path-card.card-corporate {
  background: #082770;
  border-color: rgba(201,168,76,0.55);
}
.path-card.card-corporate .path-label { color: var(--gold); }
.path-card.card-corporate .path-icon-wrap { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); }
.path-card.card-corporate .path-icon-wrap svg { stroke: var(--gold); }
.path-card.card-corporate .path-arrow { color: var(--gold); }
.path-card.card-corporate h3 { color: white; }
.path-card.card-corporate p { color: rgba(255,255,255,0.75); }

.path-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.path-icon-wrap svg { stroke: white; stroke-width: 1.5; fill: none; }
.path-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 8px; display: block;
}
.path-card h3 {
  font-family: 'DM Serif Display', serif; font-size: 21px;
  color: #ffffff; margin-bottom: 10px; line-height: 1.2;
}
.path-card p { font-size: 13.5px; color: rgba(255,255,255,0.90); line-height: 1.65; margin-bottom: 22px; }
.path-divider { width: 28px; height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 16px; }
.path-card.card-corporate .path-divider { background: rgba(201,168,76,0.3); }
.path-arrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85); text-transform: uppercase;
}
.path-arrow svg { transition: transform 0.25s; stroke: currentColor; stroke-width: 2; fill: none; }
.path-card:hover .path-arrow svg { transform: translateX(5px); }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cloud); padding: 32px 48px;
  display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(8,39,112,0.08);
}
.trust-stat { text-align: center; min-width: 120px; }
.trust-stat strong {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: 34px; color: var(--tropical); line-height: 1;
  white-space: nowrap;
}
.trust-stat span { font-size: 12px; color: var(--text-mid); letter-spacing: 0.3px; margin-top: 4px; display: block; }
.trust-div { width: 1px; height: 44px; background: rgba(8,39,112,0.12); }

/* ── SECTION SHARED ── */
section { padding: 96px 48px; }
.section-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 14px; display: block;
}
h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--deep); line-height: 1.1; margin-bottom: 20px;
}
.section-sub { font-size: 17px; color: var(--text-mid); line-height: 1.75; max-width: 540px; font-weight: 300; }

/* ── CHOOSE YOUR JOURNEY ── */
.journey-section { background: var(--sand); }
.journey-inner { max-width: 1120px; margin: 0 auto; }
.journey-header { text-align: center; margin-bottom: 56px; }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.journey-card {
  border-radius: 20px; overflow: hidden; position: relative;
  min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(8,39,112,0.10);
  transition: transform 0.35s, box-shadow 0.35s;
}
.journey-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(8,39,112,0.20); }
.journey-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.journey-card:hover .journey-card-bg { transform: scale(1.05); }
.journey-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,14,40,0.95) 0%, rgba(8,39,112,0.70) 40%, rgba(8,39,112,0.30) 80%, rgba(8,39,112,0.15) 100%);
}
.journey-card-body { position: relative; z-index: 2; padding: 32px 28px; }
.journey-card h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: white; margin-bottom: 12px; line-height: 1.22; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.journey-card p { font-size: 14px; color: rgba(255,255,255,0.95); line-height: 1.65; margin-bottom: 20px; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
.journey-badge {
  display: inline-block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; color: white; border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px; padding: 4px 12px; margin-bottom: 10px;
  background: rgba(8,39,112,0.35); backdrop-filter: blur(6px);
}
.journey-card.card-corporate-j .journey-badge { color: var(--gold); border-color: rgba(201,168,76,0.5); }
.journey-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--sky-light);
  letter-spacing: 0.3px;
}
.journey-card.card-corporate-j .journey-link { color: var(--gold); }

/* ── HOW IT WORKS ── */
.how-section { background: white; }
.how-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how-steps { margin-top: 48px; display: flex; flex-direction: column; gap: 36px; }
.how-step { display: flex; gap: 20px; }
.step-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: white; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(32,94,182,0.3);
}
.step-text h4 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--deep); margin-bottom: 6px; }
.step-text p { font-size: 14.5px; color: var(--text-mid); line-height: 1.65; }
.how-visual {
  border-radius: 24px; overflow: hidden; position: relative;
  box-shadow: 0 24px 64px rgba(8,39,112,0.14);
}
.how-visual img { width: 100%; display: block; }
.how-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 16px 20px;
  border: 1px solid rgba(8,39,112,0.1);
  box-shadow: 0 4px 24px rgba(8,39,112,0.12);
}
.how-badge p { color: var(--text-mid); font-size: 12px; margin-bottom: 4px; }
.how-badge strong { color: var(--deep); font-size: 15px; font-weight: 600; }

/* ── PROOF / STATS ── */
.stats-section {
  background: linear-gradient(135deg, #eaf5ff 0%, #f0f7ff 50%, #e8f3ff 100%);
  text-align: center;
}
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 900px; margin: 56px auto 0; }
.stat-card {
  background: white; border-radius: 18px; padding: 36px 24px;
  box-shadow: 0 4px 24px rgba(8,39,112,0.07);
  border: 1px solid rgba(8,39,112,0.06);
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px; color: var(--tropical); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 13.5px; color: var(--text-mid); line-height: 1.5; }
.stat-source { font-size: 11px; color: #9cb3cc; margin-top: 8px; }

/* ── TESTIMONIALS ── */
.proof-section { background: white; }
.proof-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.proof-card {
  background: var(--cloud); border: 1px solid rgba(8,39,112,0.07);
  border-radius: 18px; padding: 32px 28px; text-align: left;
  position: relative;
}
.proof-card::before {
  content: '"'; position: absolute; top: 20px; left: 28px;
  font-family: 'DM Serif Display', serif; font-size: 64px; color: var(--sky); line-height: 0.7; opacity: 0.35;
}
.proof-card-body { padding-top: 28px; }
.proof-card p { font-size: 14.5px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }
.proof-card footer { font-size: 12px; color: var(--sky); font-weight: 700; letter-spacing: 0.5px; }
.proof-product-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--tropical);
  background: var(--sky-light); border-radius: 20px; padding: 3px 10px; margin-bottom: 14px;
}

/* ── CTA BAND ── */
.cta-band {
  position: relative; overflow: hidden; padding: 96px 48px; text-align: center;
  background: url('https://images.unsplash.com/photo-1540202404-a2f29016b523?w=1600&q=85') center/cover no-repeat;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,39,112,0.84) 0%, rgba(32,94,182,0.78) 100%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px; padding: 6px 14px; margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.cta-band h2 { font-family: 'DM Serif Display', serif; font-size: clamp(30px, 4vw, 52px); color: white; margin-bottom: 18px; line-height: 1.1; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 17px; margin-bottom: 44px; line-height: 1.65; font-weight: 300; }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--deep);
  padding: 16px 36px; border-radius: 8px; font-size: 15px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.28); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7); color: white;
  padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* ── FOOTER ── */
footer {
  background: #05123a; color: rgba(255,255,255,0.55);
  padding: 64px 48px 32px;
}
.footer-top { display: flex; gap: 60px; justify-content: space-between; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer-logo-img {
  width: 150px; height: auto; display: block;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; }
.footer-col h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes pulse-green { 0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.3); } 50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .journey-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 28px; padding: 28px 24px; }
  .trust-div { display: none; }
  .path-row { flex-direction: column; align-items: center; }
}
