/* Home page designs */
/*  

! #####################
? ######################
*/




/* --- Layout --- */
.routes-section .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.routes-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Nudge for older Safari */
.routes-copy{ align-self: center; }

/* Mobile stack + spacing */
@media (max-width: 980px){
  .routes-section .container{ padding: 48px 16px; }
  .routes-grid{
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
}

/* --- Copy --- */
.routes-copy h2{
  margin: 0 0 12px 0;
  font-weight: 500;
  font-size: clamp(24px, 5.2vw, 28px);
  line-height: 1.15;
}
.routes-copy p{
  margin: 0 0 24px 0;
  color: rgba(0,0,0,.72);
  font-size: clamp(14px, 3.8vw, 18px);
  line-height: 1.6;
  max-width: 60ch;
  overflow-wrap: anywhere;
}

.routes-cta{ display:flex; gap:16px; flex-wrap: wrap; }
.routes-cta .btn{
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
}

/* Better mobile tap targets */
@media (max-width: 540px){
  .routes-cta{ gap: 12px; }
  .routes-cta .btn{
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
  }
}

/* Teal buttons */
.btn-teal{
  background: #00C2A8;
  color: #0c2f3e;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  transition: transform .15s ease, filter .15s ease;
}
.btn-teal:hover{ filter: brightness(1.05); transform: translateY(-1px); }

.btn-outline-teal{
  background: transparent;
  border: 2px solid #00C2A8;
  color: #00C2A8;
  transition: background .15s ease;
}
.btn-outline-teal:hover{ background: rgba(0,194,168,.1); }

/* --- Card --- */
.card{
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(0,0,0,.06),
    0 8px 28px rgba(0,0,0,.12);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}

.card-head{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f7f9fb;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.status-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.card-title{
  font-weight: 700;
  color: #1b2a3a;
  font-size: clamp(16px, 3.6vw, 18px);
}
.card-media{ padding: 14px; }
.card-media img{
  display:block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Card tweaks on small screens */
@media (max-width: 980px){
  .card-media{ padding: 12px; }
}





/* ============================
        PLATFORM SECTION
   ============================ */

.platform-section{
  background: #eef3f6;
  padding: 72px 0;
  max-width: 100%;
}

.platform-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left content */
.platform-copy h2{
  margin: 0 0 10px 0;
  font-size: clamp(24px, 5.2vw, 30px);
  line-height: 1.15;
  font-weight: 500;
}
.platform-copy h3{
  margin: 0 0 8px 0;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 500;
  color: #1f2a37;
}
.platform-lead{
  margin: 0 0 22px 0;
  color: rgba(0,0,0,.65);
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.65;
  max-width: 62ch;
  overflow-wrap: anywhere;
}

/* Features list */
.features{
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* Row container */
.feature{
  display: grid;
  grid-template-columns: 48px 1fr;    /* icon | content */
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  align-items: start;
}

/* inner wrapper: title + description */
.feature > div{
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  column-gap: 24px;
  align-items: start;
}

/* Remove hard widths (prevents overflow on mobile) */
.feature-ico{ width: 40px; height: 40px; display:block; flex: 0 0 40px; }
.feature h4{
  margin: 0;
  font-size: clamp(15px, 3.6vw, 18px);
  font-weight: 600;
  color: #0f172a;
  overflow-wrap: anywhere;
}
.feature p{
  margin: 0;
  color: rgba(0,0,0,.7);
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

/* CTA */
.platform-cta{
  display:inline-flex;
  max-width: 90%;
  margin-top:18px;
  border-radius:12px;
  padding:14px 22px;
  font-weight:800;
}

/* Right: image */
.platform-shot{ justify-self: end; }
.platform-img{
  display:block;
  max-width: 640px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.12))
          drop-shadow(0 28px 56px rgba(0,0,0,.12));
}


/* Tablet down: stack columns, relax grids */
@media (max-width: 1024px){
  .platform-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .platform-shot{ justify-self: center; }
  .platform-img{ max-width: 88%; }
  .feature > div{
    grid-template-columns: 1fr;   /* stack title above description */
    row-gap: 6px;
  }
}

/* Small phones: tighter spacing & full-width images/buttons */
@media (max-width: 600px){
  .platform-section{ padding: 56px 0; }
  .platform-grid{ gap: 28px; padding: 0 16px; }

  .feature{
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .platform-img{ max-width: 100%; }

  .platform-cta{
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
  }
}

/* Ultra-small safety (iPhone SE / old Android) */
@media (max-width: 380px){
  .routes-section .container{ padding: 40px 14px; }
  .platform-grid{ padding: 0 14px; }
  .feature{ gap: 10px; }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn-teal{ transition: none; }
  .btn-outline-teal{ transition: none; }
}


/* 
? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

*/

/* Section background (reuse your grainy gradient image) */
.shipping-section{
  position: relative;
  padding: 72px 0 90px;
  color: #fff;
  background: url('/wp-content/themes/Archive/assets/images/gray-blue-white-grainy-gradient-background-poster.png')
              center/cover no-repeat;
  overflow: hidden;
}

/* subtle glossy overlay on top of the bg */
.shipping-section::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 45%, rgba(255,255,255,0) 100%),
    radial-gradient(1400px 500px at 55% -120px, rgba(255,255,255,.18), rgba(255,255,255,0) 60%);
  pointer-events:none;
}

/* container */
.shipping-section .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* sit above overlay */
  z-index: 1;
}

/* Headings + lead */
.shipping-head h2{
  margin: 0 0 10px 0;
  font-weight: 400;
  letter-spacing: .5px;
  font-size: clamp(22px, 4.2vw, 30px);
  line-height: 1.15;
}
.shipping-head h3{
  margin: 0 0 8px 0;
  font-weight: 400;
  font-size: clamp(20px, 3.6vw, 22px);
  line-height: 1.2;
}
.shipping-lead{
  margin: 0 0 28px 0;
  max-width: 80ch;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 2.4vw, 20px);
  line-height: 1.65;
}

/* Cards grid */
.shipping-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Individual card */
.ship-card{
  background: #fff;
  color: #0f172a;
  border-radius: 22px;
  padding: 28px 26px;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(0,0,0,.06),
    0 10px 28px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.06);
}
.ship-ico{
  width: 36px; height: 36px; display:block; margin: 0 auto 14px auto;
}
.ship-card h4{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.ship-card p{
  margin: 0;
  color: rgba(15,23,42,.66);
  font-size: 16px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 1120px){
  .shipping-cards{ grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 640px){
  .shipping-head h2{ font-size: 22px; }
  .shipping-head h3{ font-size: 20px; }
  .shipping-cards{ grid-template-columns: 1fr; }
  .ship-card{ padding: 22px 20px; }
}


/* 
? #########################################################
Join Contact Form
*/

/* ======= Section shell ======= */
.verify-section{
  background:#fff;
  padding:80px 0;
}
.verify-section .container{
  max-width:1200px; margin:0 auto; padding:0 20px;
}

/* ======= 2-row grid: intro on row1; media + form on row2 ======= */
.verify-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;             /* left | right */
  grid-template-areas:
    "intro  ."
    "media  form";
  column-gap:56px;
  row-gap:24px;
  align-items:start;
}

/* place items */
.verify-intro{ grid-area:intro; }
.verify-media{ grid-area:media; }
.verify-right{ grid-area:form; align-self:start; }

/* ======= Intro (left, row 1) ======= */
.verify-intro h2{
  margin:0 0 12px 0;
  font-weight: 500;
  font-size:clamp(25px, 4.8vw, 30px);
  line-height:1.15;
  color:#0f172a;
}
.verify-lead{
  margin:0;
  color:#4b5563;
  font-size:clamp(13px, 2.3vw, 15px);
  line-height:1.65;
  max-width:72ch;
}

/* ======= Image (left, row 2) ======= */
.verify-media{
  margin-top:45px; border-radius:22px; overflow:hidden;
  box-shadow:0 1px 0 rgba(0,0,0,.04), 0 24px 56px rgba(0,0,0,.18);
}
.verify-media img{ display:block; width:100%; height:auto;}

/* ======= Form (right, row 2) ======= */
.verify-right h3{
  margin:6px 0 18px 0;
  font-weight: 500;
  font-size:clamp(22px, 3.6vw, 28px);
  color:#0e1b34; /* navy */
}
.verify-form{ display:grid; gap:14px; }
.vf-field{ display:grid; gap:6px; }
.vf-label{ font-size:13px; color:#6b7280; }


/* Make all form controls the same sizing model */
.verify-form input,
.verify-form select,
.verify-form .btn {
  box-sizing: border-box;
  width: 100%;
}

/* Inputs + Select (uniform look) */
.verify-form input,
.verify-form select{
  /* remove the 20px/!important */
  height: 50px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.3;
  transition: border-color .16s ease, box-shadow .16s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* Select reset + custom caret so it matches inputs */
.verify-form select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%2399A1AE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  padding-right: 44px;                 /* room for the arrow */
}

.verify-form input::placeholder,
.verify-form select:invalid { color: #9ca3af; }

/* Focus ring (same for both) */
.verify-form input:focus,
.verify-form select:focus{
  outline: none;
  border-color: #00C2A8;
  box-shadow: 0 0 0 3px rgba(0,194,168,.20), 0 1px 2px rgba(0,0,0,.04);
}

/* Button: full width like the fields */
.btn-full{
  display: block;                      /* ensures width:100% fills the column */
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}
.btn-teal{ background:#00C2A8; color:#0c2f3e; }
.btn-block{ height: 56px; }

/* Mobile friendly for form */
/* ! ######################### */

/* ---------- Tablet & down ---------- */
@media (max-width: 1024px){
  /* stack: intro → image → form (swap media/form if you prefer) */
  .verify-grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "form";
    column-gap: 0;
    row-gap: 20px;
  }

  .verify-section{ padding: 64px 0; }
  .verify-section .container{ padding: 0 18px; }

  .verify-intro h2{
    font-size: clamp(24px, 5vw, 28px);
    margin-bottom: 10px;
  }
  .verify-lead{
    font-size: clamp(14px, 2.4vw, 16px);
    max-width: none;
  }

  .verify-right h3{
    font-size: clamp(20px, 4.6vw, 26px);
    margin: 2px 0 14px;
  }

  .verify-media{ border-radius: 18px; }
}

/* ---------- Phones ---------- */
@media (max-width: 560px){
  .verify-section{ padding: 52px 0; }
  .verify-section .container{ padding: 0 16px; }

  .verify-intro h2{ font-size: 24px; }
  .verify-lead{ font-size: 14px; }

  .verify-media{
    border-radius: 16px;
    margin-top: 5px !important;
    box-shadow: 0 1px 0 rgba(0,0,0,.03), 0 16px 36px rgba(0,0,0,.16);
  }

  /* Comfortable tap sizes & tighter padding on small screens */
  .verify-form input,
  .verify-form select{
    height: 48px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .verify-form select{
    background-size: 16px 16px;
    background-position: right 10px center;
    padding-right: 38px;
  }

  .vf-label{ font-size: 12px; }

  .btn{ font-size: 16px; padding: 12px 16px; }
  .btn-block{ height: 50px; }
}
