/* TripValet — TripValet — Corporate Advantage */


: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: 16px 48px;
  background: rgba(255,255,255,0.97);
  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);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-ball {
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5A9DDD, #082770);
  box-shadow: 0 0 14px rgba(90,157,221,0.4);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-name { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--deep); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--text-mid); font-size: 14px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--tropical); }
.btn-gold {
  background: var(--gold); color: white;
  padding: 11px 24px; border-radius: 7px; font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(201,168,76,0.5); }

/* HERO */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 132px 400px 80px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.75) 48%, rgba(8,39,112,0.04) 100%),
    url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1800&q=85') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.corp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.4);
  border-radius: 40px; padding: 8px 18px; margin-bottom: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); animation: fadeUp 0.6s ease both;
}
.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5vw, 66px);
  color: var(--deep); line-height: 1.05; margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-content h1 em { font-style: italic; color: var(--tropical); }
.hero-content p {
  font-size: 18px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 16px; font-weight: 300;
  animation: fadeUp 0.6s 0.18s ease both;
}
.hero-disclaimer {
  font-size: 13px; color: #7a96c0; margin-bottom: 44px;
  animation: fadeUp 0.6s 0.22s ease both;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.28s ease both; }
.btn-primary {
  background: var(--gradient); color: white;
  padding: 16px 36px; border-radius: 8px; font-size: 15px; font-weight: 700;
  text-decoration: none; box-shadow: 0 6px 24px rgba(32,94,182,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(32,94,182,0.45); }
.btn-outline {
  border: 2px solid rgba(8,39,112,0.2); color: var(--deep);
  padding: 14px 30px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--tropical); background: rgba(8,39,112,0.04); }

/* Floating stats — right side of hero */
.hero-stats {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 2;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat-card {
  background: white; border: 1px solid rgba(8,39,112,0.1);
  border-radius: 16px; padding: 22px 28px; min-width: 210px;
  box-shadow: 0 8px 40px rgba(8,39,112,0.1);
}
.hero-stat-card strong {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: 42px; color: var(--tropical); line-height: 1; margin-bottom: 4px;
}
.hero-stat-card strong.gold { color: var(--gold); }
.hero-stat-card span { font-size: 12.5px; color: var(--text-mid); line-height: 1.4; }

/* ── SHARED ── */
section { padding: 96px 80px; }
.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(28px, 3.5vw, 50px); color: var(--deep); line-height: 1.15; margin-bottom: 20px; text-wrap: balance; }
.section-sub { font-size: 17px; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* IS THIS FOR YOU */
.qualify-section { background: var(--cloud); }
.qualify-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.qualify-left p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-top: 16px; }

/* QUALIFY (split image+text on left, checklist on right) */
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }

/* VIDEO EXPLAINER */
.video-section { padding: 96px 80px; }

/* ESCAPE TRIPS padding */
.escape-section { padding: 96px 80px; }
.qualify-list { display: flex; flex-direction: column; gap: 16px; }
.qualify-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border: 1px solid rgba(8,39,112,0.08);
  border-radius: 14px; padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(8,39,112,0.06);
}
.qualify-check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(8,39,112,0.08), rgba(90,157,221,0.15));
  border: 1px solid rgba(90,157,221,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--tropical); font-size: 13px; font-weight: 700;
}
.qualify-item h4 { font-size: 15px; font-weight: 600; color: var(--deep); margin-bottom: 5px; }
.qualify-item p { font-size: 13.5px; color: var(--text-mid); line-height: 1.55; }

/* FEATURES */
.features-section { background: white; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--cloud); border-radius: 18px; padding: 32px 28px;
  border: 1px solid rgba(8,39,112,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(8,39,112,0.1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(8,39,112,0.08), rgba(90,157,221,0.18));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; border: 1px solid rgba(90,157,221,0.2);
}
.feature-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--deep); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ESCAPE TRIPS */
.escape-section {
  position: relative; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1439130490301-25e322d88054?w=1600&q=85') center/cover no-repeat;
}
.escape-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,39,112,0.88) 0%, rgba(32,94,182,0.72) 60%, rgba(8,39,112,0.65) 100%);
}
.escape-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.escape-header { max-width: 580px; margin-bottom: 56px; }
.escape-header .section-kicker { color: var(--gold); }
.escape-header h2 { color: white; }
.escape-header p { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.7; margin-top: 16px; font-weight: 300; }
.escape-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.escape-card {
  border-radius: 18px; overflow: hidden; position: relative;
  min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.35s;
}
.escape-card:hover { transform: translateY(-6px); }
.escape-card-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.escape-card:hover .escape-card-img { transform: scale(1.05); }
.escape-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,39,112,0.92) 0%, rgba(8,39,112,0.2) 60%, transparent 100%);
}
.escape-card-body { position: relative; z-index: 2; padding: 24px; }
.escape-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 8px; display: block; }
.escape-card h4 { font-family: 'DM Serif Display', serif; font-size: 22px; color: white; margin-bottom: 6px; }
.escape-card p { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.55; }

/* PROCESS */
.process-section { background: var(--cloud); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 37px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--deep), var(--sky)); z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-num {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--gradient); color: white;
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(32,94,182,0.35);
  border: 4px solid white;
}
.process-step h4 { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--deep); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* CTA */
.cta-section {
  background: url('https://images.unsplash.com/photo-1510414842594-a61c69b5ae57?w=1600&q=85') center/cover no-repeat;
  position: relative; padding: 120px 80px; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,39,112,0.86) 0%, rgba(32,94,182,0.80) 100%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4.5vw, 54px); color: white; margin-bottom: 20px; line-height: 1.1; }
.cta-inner p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.75; margin-bottom: 48px; font-weight: 300; }
.cta-disclaimer { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* FOOTER */
footer { background: #05123a; color: rgba(255,255,255,0.55); padding: 60px 80px 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; gap: 10px; margin-bottom: 16px; }
.footer-logo-ball { width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #5A9DDD, #082770); display: flex; align-items: center; justify-content: center; }
.footer-logo-name { font-family: 'DM Serif Display', serif; font-size: 19px; color: white; }
.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: 16px; }
.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; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.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, section, footer { padding-left: 24px; padding-right: 24px; }
  .hero { flex-direction: column; padding: 120px 24px 60px; }
  .hero-content { width: 100%; }
  .hero-stats { position: static; transform: none; margin-top: 40px; flex-direction: column; gap: 12px; }
  .hero-stat-card { width: 100%; min-width: 0; }
  .qualify-inner { grid-template-columns: 1fr; gap: 40px; }
  .qualify-grid { grid-template-columns: 1fr; min-height: 0; }
  .qualify-left { min-height: 380px; }
  .qualify-left > div[style*="padding:56px"] { padding: 32px 24px !important; }
  .qualify-right { padding: 40px 24px !important; }
  .video-section { padding: 64px 24px; }
  .escape-section { padding: 64px 24px; }
  .features-grid, .escape-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .nav-links { display: none; }
}
