/* =========================
   HOME.CSS (Homepage-only)
   IMPORTANT: no :root, no body, no nav/header here
   ========================= */

/* ===== Hero ===== */
.hero{
  position:relative;
  padding:10px 0 18px;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity:.9;
}
.hero-inner{ text-align:center; padding:14px 0 10px; }

.hero-kicker{
  margin:0 auto 12px;
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,242,255,.86);
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
}
.dot{
  width:8px;height:8px;border-radius:999px;
  background:rgba(22,169,255,.95);
  box-shadow:0 0 16px rgba(22,169,255,.55);
  flex:0 0 8px;
}

h1{
  margin:0;
  font-size:clamp(38px, 4.8vw, 78px);
  line-height:1.02;
  letter-spacing:-.6px;
  font-weight:950;
  text-shadow:0 10px 26px rgba(0,0,0,.55);
}
.h-yellow{ color:var(--yellow); }
.h-cyan{ color:var(--cyan); }

.hero-sub{
  margin:12px auto 0;
  max-width:980px;
  font-size:clamp(17px, 1.5vw, 24px);
  line-height:1.38;
  color:rgba(234,242,255,.92);
  font-weight:850;
  text-shadow:0 8px 18px rgba(0,0,0,.45);
}

.van-stage{
  position:relative;
  margin:22px auto 8px;
  width:min(980px, 100%);
  padding:0 8px;
}
.van-glow{
  position:absolute;
  inset:auto 8% -10% 8%;
  height:86%;
  border-radius:999px;
  background:
    radial-gradient(closest-side at 50% 50%,
      rgba(22,169,255,.34),
      rgba(22,169,255,.18) 35%,
      rgba(12,74,170,.12) 55%,
      transparent 72%);
  filter:blur(10px);
  pointer-events:none;
  transform:translateY(6px);
}
.van-img{
  position:relative;
  z-index:1;
  filter:drop-shadow(0 26px 36px rgba(0,0,0,.55));
}

.cta-row{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:18px 0 10px;
}

/* NOTE: .btn is used across sections on homepage.
   If you want these buttons site-wide, move .btn into base.css later. */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  padding:12px 16px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  font-weight:950;
  letter-spacing:.2px;
  box-shadow:var(--shadow-soft);
  user-select:none;
  cursor:pointer;
}
.btn:hover{ filter:brightness(1.06); }
.btn:active{ transform:translateY(1px); }

.btn-primary{
  background:linear-gradient(180deg, var(--cta-red), var(--cta-red-2));
  color:#fff;
}
.btn-secondary{
  background:linear-gradient(180deg, var(--cta-blue), var(--cta-blue-2));
  color:#fff;
}

.trust{
  margin:10px 0 0;
  font-weight:850;
  color:rgba(234,242,255,.78);
  letter-spacing:.55px;
}

@media (max-width:520px){
  .hero{ padding:0px 0 12px; }
  .cta-row{ gap:12px; }
  .btn{ width:100%; min-width:auto; }
}

/* ===== ROUTE SECTION ===== */
.route-section{
  padding:28px 0 28px;
  background:#ffffff;
  border-top:1px solid rgba(0,0,0,.06);
}
.route-panel{
  width:min(1040px, 100%);
  margin:0 auto;
  border-radius:22px;
  padding:26px 26px 22px;
  background:linear-gradient(180deg, rgba(12,22,45,.98), rgba(8,15,32,.98));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 50px rgba(0,0,0,.28);
  position:relative;
  overflow:hidden;
}
.route-panel::before{
  content:"";
  position:absolute;
  inset:-40% -20% auto -20%;
  height:280px;
  background:radial-gradient(closest-side at 50% 50%,
    rgba(22,169,255,.22),
    rgba(22,169,255,.10) 45%,
    transparent 70%);
  pointer-events:none;
}
.route-head{
  position:relative;
  text-align:center;
  padding:4px 10px 12px;
}
.route-title{
  margin:0;
  font-size:clamp(22px, 2.4vw, 34px);
  font-weight:950;
  letter-spacing:-.2px;
  color:rgba(22,169,255,.95);
}
.route-sub{
  margin:8px auto 0;
  max-width:860px;
  color:rgba(234,242,255,.70);
  font-weight:700;
  line-height:1.45;
  font-size:13px;
}
.route-divider{
  height:1px;
  margin:14px 0 18px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  opacity:.9;
}
.routes{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}
.route-card{
  border-radius:16px;
  padding:18px 18px 16px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 22px rgba(0,0,0,.22);
  min-height:230px;
  display:flex;
  flex-direction:column;
}
.route-card h3{
  margin:0;
  font-size:16px;
  font-weight:950;
  letter-spacing:-.2px;
  color:rgba(234,242,255,.95);
  padding-right:110px;
}
.route-card p{
  margin:6px 0 0;
  color:rgba(234,242,255,.68);
  font-weight:650;
  line-height:1.5;
  font-size:13px;
}
.route-badge{
  display:none;
  position:absolute;
  top:16px;
  right:16px;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:rgba(234,242,255,.86);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  white-space:nowrap;
}
.route-badge .dot{
  width:8px;height:8px;border-radius:999px;
  background:rgba(246,210,56,.95);
  box-shadow:0 0 14px rgba(246,210,56,.28);
}
.route-card-top{ position:relative; }
.route-list{
  margin:12px 0 0;
  padding-left:18px;
  color:rgba(234,242,255,.70);
  font-weight:650;
  line-height:1.55;
  font-size:13px;
}
.route-list li{ margin:4px 0; }

.route-cta{
  margin-top:auto;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding-top:14px;
}
.btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  font-weight:950;
  letter-spacing:.2px;
  box-shadow:0 10px 18px rgba(0,0,0,.18);
  user-select:none;
}
.btn-mini:hover{ filter:brightness(1.05); }
.btn-mini:active{ transform:translateY(1px); }

.btn-red{ background:linear-gradient(180deg, #c91818, #b31414); color:#fff; }
.btn-blue{ background:linear-gradient(180deg, #0a61c9, #0856b4); color:#fff; }
.btn-gray{
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  color:rgba(234,242,255,.90);
}

@media (max-width:940px){
  .routes{ grid-template-columns:1fr; }
  .route-panel{ padding:22px 18px 18px; }
}
@media (max-width:520px){
  .route-cta .btn-mini{ width:100%; }
  .route-card h3{ padding-right:0; }
  .route-badge{ position:static; margin-top:10px; width:max-content; }
}

/* ===== Big phone strip ===== */
.call-strip{
  background:linear-gradient(180deg, #a90f0f, #980b0b);
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(0,0,0,.25);
  padding:22px 0;
}
.call-strip .big{
  text-align:center;
  font-weight:950;
  letter-spacing:1px;
  font-size:clamp(34px, 5vw, 62px);
  color:rgba(255,255,255,.95);
  text-shadow:0 10px 22px rgba(0,0,0,.25);
}
.call-strip .small{
  margin-top:6px;
  text-align:center;
  color:rgba(255,255,255,.86);
  font-weight:750;
  letter-spacing:.4px;
  font-size:13px;
}

/* ===== Sections ===== */
.section{
  padding:46px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.section h2{
  margin:0 0 12px;
  font-size:clamp(26px, 2.2vw, 38px);
  letter-spacing:-.3px;
  font-weight:950;
}
.section p{
  margin:0 0 18px;
  color:rgba(234,242,255,.76);
  line-height:1.6;
  font-weight:650;
  max-width:920px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.card{
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 26px rgba(0,0,0,.25);
  padding:18px 18px 16px;
  min-height:140px;
}
.card h3{
  margin:0 0 8px;
  font-weight:950;
  letter-spacing:-.2px;
  font-size:18px;
}
.card p{
  margin:0;
  color:rgba(234,242,255,.72);
  font-weight:650;
  line-height:1.55;
}

.list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:16px;
}
.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.bullet .b{
  width:10px;height:10px;border-radius:999px;
  background:rgba(246,210,56,.95);
  box-shadow:0 0 14px rgba(246,210,56,.35);
  margin-top:5px;
  flex:0 0 10px;
}
.bullet strong{ display:block; font-weight:950; }
.bullet span{ color:rgba(234,242,255,.70); font-weight:650; }

@media (max-width:940px){
  .grid{ grid-template-columns:1fr; }
  .list{ grid-template-columns:1fr; }
  .btn{ min-width:220px; }
}

/* ===== White Contact Section ===== */
.section--white{
  background:#f7f9fc;
  color:#0b1220;
  border-top:1px solid rgba(0,0,0,.08);
}
.contact-heading{
  color:#0b1220;
  font-weight:950;
  letter-spacing:-.3px;
  margin-bottom:8px;
}
.panel-white{
  background:#ffffff;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 12px 22px rgba(0,0,0,.08);
  border-radius:18px;
  padding:18px;
}
.panel-title{
  margin:0 0 8px;
  font-weight:950;
  letter-spacing:-.2px;
  color:#0b1220;
}
.contact-box{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:stretch;
  margin-top:18px;
}
.form{ display:grid; gap:10px; margin-top:10px; }
.input, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  background:#f4f6fa;
  color:#0b1220;
  outline:none;
  font-weight:650;
}
.input::placeholder, .textarea::placeholder{ color:rgba(11,18,32,.55); }
.textarea{ min-height:120px; resize:vertical; }

.fine{
  font-size:12px;
  line-height:1.45;
  margin-top:10px;
  color:rgba(11,18,32,.65);
}

@media (max-width:940px){
  .contact-box{ grid-template-columns:1fr; }
}

/* ===== Work Section ===== */
.work-section{
  background:#ffffff;
  padding:20px 20px;
  text-align:center;
}
.work-section h2{
  margin-bottom:20px;
  font-size:32px;
  color:#0f1a2b;
}
.work-section p{
  max-width:700px;
  margin:0 auto 10px;
  color:#555;
  font-weight:600;
}
.work-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:18px;
}
.work-item{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
}
.work-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}
.work-caption{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:10px;
  font-size:14px;
  background:rgba(0,0,0,0.65);
  color:#fff;
}
@media (max-width:900px){
  .work-grid{ grid-template-columns:1fr; }
  .work-item img{ height:220px; }
}

/* ===== Process Section ===== */
.process-section{
  background:#0f1a2b;
  padding:30px 20px;
  text-align:center;
}
.process-container{
  max-width:1200px;
  margin:0 auto;
}
.process-section h2{
  color:#ffffff;
  font-size:32px;
  margin-bottom:15px;
}
.process-subtext{
  color:#cbd5e1;
  max-width:700px;
  margin:0 auto 60px;
  font-size:16px;
  font-weight:600;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}
.process-card{
  background:#16243a;
  padding:30px 25px;
  border-radius:10px;
  text-align:left;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 26px rgba(0,0,0,.25);
}
.step-number{
  font-size:18px;
  font-weight:900;
  color:#facc15;
  margin-bottom:15px;
}
.process-card h3{
  color:#ffffff;
  margin-bottom:15px;
  font-size:20px;
}
.process-card p{
  color:#cbd5e1;
  font-size:15px;
  line-height:1.6;
  margin:0;
  font-weight:600;
}
@media (max-width:900px){
  .process-grid{ grid-template-columns:1fr; }
}

/* ===== Footer ===== */
footer{
  padding:26px 0 38px;
  color:rgba(234,242,255,.60);
  font-weight:650;
  border-top:1px solid rgba(255,255,255,.08);
}
/* Raise just the inner content */
.trust-strip .trust-inner{
  padding-top: 6px;   /* increase to raise text */
  padding-bottom: 0;
}
.trust-strip{
  background:#f5f8ff;
  padding:16px 0;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.trust-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.trust-left{
  font-weight:1000;
  color:#0b1220;
}

.trust-right{
  font-weight:700;
  color:#334155;
}
.trust-strip{
  background:#07122b;
  margin-top:-10px;
  padding:10px 0;
}
/* Reduce space between pills and trust strip */
.hero{
  padding-bottom: 20px;  /* try 15px–30px */
}
