/* =========================================================
   ✅ ORGANIZED + DEDUPED CSS (your same styles, cleaned up)
   - Removed repeated blocks (.footer-link, .site-footer, .hero-panel,
     .quick-card, .quote-bar, .quote-main, .quote-text-wrap, .quote-hero)
   - Kept LAST-WINS behavior where you had conflicting versions
   ========================================================= */


/* =========================
   1) THEME TOKENS
   ========================= */
:root{
  --brand: #0F4C5C;
  --brand-2: #2A7FBA;
  --soft: #F8F6F2;
  --muted: #6c757d;
}


/* =========================
   2) ACCESSIBILITY / GLOBAL
   ========================= */
.skip-link{
  position: absolute;
  top: 0;
  left: 0;
  margin: .5rem;
  padding: .5rem .75rem;
  background: #000;
  color: #fff;
  border-radius: .5rem;
  z-index: 2000;
  text-decoration: none;
}

:focus-visible{
  outline: 3px solid var(--brand-2);
  outline-offset: 2px;
}

a:focus-visible{
  border-radius: .35rem;
}

/* helper utilities */
.py-lg-6{ padding-top: 5rem; padding-bottom: 5rem; }
.letterspace{ letter-spacing: .12em; }
.section{ scroll-margin-top: 90px; }
.bg-soft{ background: var(--soft); }

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  html:focus-within{ scroll-behavior: auto; }
  *{ transition: none !important; animation: none !important; }
}


/* =========================
   3) HEADER / NAV (FINAL NAVY VERSION)
   ========================= */
.topbar{
  background: #0f1f3d; /* deep navy */
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar .topbar-link{
  color: #ffffff;
  text-decoration: none;
}
.topbar .topbar-link:hover{
  color: #7fb3ff;
  text-decoration: underline; /* keeps your underline behavior */
}

.custom-nav{
  background: #132a52; /* slightly lighter navy */
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.custom-nav .nav-link{
  color: #ffffff;
  font-weight: 500;
}
.custom-nav .nav-link:hover{
  color: #7fb3ff;
}
.custom-nav .nav-link.active{
  color: #7fb3ff;
  font-weight: 600;
}

/* buttons (final) */
.btn-primary{
  background-color: #2e6cf6;
  border-color: #2e6cf6;
}
.btn-primary:hover{
  background-color: #1f5be0;
  border-color: #1f5be0;
}

/* keyboard focus (your nav/header focus rule) */
.btn-primary:focus,
.nav-link:focus,
.topbar-link:focus{
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* brand mark */
.brand-mark{
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: inline-block;
}

/* logo / badge */
.logo-img{
  height: 52px;
  width: auto;
}
.hca-badge{
  font-size: 0.65rem;
  letter-spacing: .08em;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-top: -2px;
}
.hca-badge-pill{
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(255,255,255,.15);
  color: #fff;
}
@media (max-width: 576px){
  .logo-img{ height: 44px; }
  .hca-badge{ font-size: 0.6rem; }
}


/* =========================
   4) HERO / PANELS / CARDS
   ========================= */

/* general hero gradient (kept) */
.hero{
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(42,127,186,.16), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(15,76,92,.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

/* nature hero */
.hero-nature{
  position: relative;
  overflow: hidden;
  background: url("img/hero-nature.jpg") center/cover no-repeat;
}
.hero-nature > .container{
  position: relative;
  z-index: 1;
}

/* you had a second rule `.hero.hero-nature{ background... }` — merged here */
.hero.hero-nature{
  background: url("img/hero-nature.jpg") center/cover no-repeat;
  position: relative;
  padding-top: 3rem; /* from your last block */
}

/* glass hero panel (FINAL: last version wins) */
.hero-panel{
  display: inline-block;
  max-width: 46rem;
  padding: 1.25rem 1.25rem;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* keep hero text readable */
.hero-panel h1,
.hero-panel p{ color: #0b1f24; }
.hero-panel .text-secondary{ color: rgba(0,0,0,.72) !important; }
.hero-panel .text-primary{ color: #0F4C5C !important; }
.hero-panel .btn-outline-primary{ background: #fff; }

@media (max-width: 575.98px){
  .hero-panel{
    display: block;
    width: 100%;
  }
  .hero-panel .btn-outline-primary{
    border-width: 2px;
  }
}

/* badge */
.badge-soft{
  background: rgba(15,76,92,.10);
  color: #08333d;
  border: 1px solid rgba(15,76,92,.18);
  padding: .55rem .75rem;
  border-radius: 999px;
  font-weight: 700;
}

/* cards */
.quick-card{
  border-radius: 24px;
  background: rgba(255,255,255,0.4) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 25px 50px rgba(0,0,0,.2);
}

/* optional: on image hero make quick card pop */
.hero-nature .quick-card{
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
}

/* proof card */
.proof{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 1rem;
  background: rgba(255,255,255,.80);
}

/* chips */
.num-chip{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15,76,92,.10);
  color: var(--brand);
  font-weight: 800;
  flex: 0 0 auto;
}


/* =========================
   5) ICONS / STEPS / RATING
   ========================= */
.icon-pill{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(42,127,186,.12);
  color: var(--brand-2);
  font-size: 1.25rem;
}

.step{
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,.06);
}
.step-num{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15,76,92,.12);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: .75rem;
}

.stars i{
  color: #b8860b;
  margin-right: 2px;
}


/* =========================
   6) SERVICES
   ========================= */
.service-shell{
  border-radius: 1.25rem;
}

.service-step{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15,76,92,.12);
  color: var(--brand);
  font-weight: 800;
}

/* merged your two service-card definitions */
.service-card{
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  background: #fff;
}
.service-card:hover{
  border-color: rgba(42,127,186,.35);
  box-shadow: 0 .75rem 1.75rem rgba(0,0,0,.06);
}

.service-img{
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.service-list li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .6rem;
  margin-bottom: .55rem;
  color: rgba(0,0,0,.75);
}
.service-list .bi{
  color: var(--brand-2);
  margin-top: .12rem;
}

.support-row{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1rem;
  background: #fff;
  padding: .9rem 1rem;
  display: flex;
  gap: .9rem;
  align-items: center;
}
.support-row:hover{
  border-color: rgba(42,127,186,.35);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.06);
}


/* =========================
   7) FAQ
   ========================= */
.faq-img{
  height: 200px;
  background:
    linear-gradient(120deg, rgba(15,76,92,.22), rgba(42,127,186,.18)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.35) 0,
      rgba(255,255,255,.35) 10px,
      rgba(255,255,255,.18) 10px,
      rgba(255,255,255,.18) 20px
    );
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.icon-pill-sm{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(42,127,186,.12);
  color: var(--brand-2);
  font-size: 1.1rem;
  flex: 0 0 auto;
}

#faq .accordion-button{ font-weight: 600; }
#faq .accordion-button:focus{
  box-shadow: 0 0 0 .25rem rgba(42,127,186,.25);
}
#faq .accordion-item{
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-img-wrap{
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.08);
  border-radius: 1.25rem 1.25rem 0 0;
}
.faq-img-real{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* =========================
   8) CONTACT / APPLY PANELS
   ========================= */
.contact-hero{
  position: relative;
  min-height: 520px;
  background: #e9ecef;
}
.contact-hero-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.contact-hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.contact-hero-card{
  width: min(520px, 100%);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1rem;
  padding: 1.25rem;
}

.apply-img-wrap{
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.apply-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* =========================
   9) FOOTER (FINAL UNIFIED)
   ========================= */
footer{
  background: #f8f9fa;
}

.site-footer{
  position: relative;
  overflow: hidden;
  padding: 3rem 0 0;
  background: #f7faf9;
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-inner{
  max-width: 1400px;
}

.footer-art{
  position: absolute;
  inset: -200px -200px auto -200px;
  height: 520px;
  background:
    radial-gradient(closest-side at 20% 35%, rgba(42,127,186,.18), transparent 60%),
    radial-gradient(closest-side at 70% 30%, rgba(15,76,92,.16), transparent 60%),
    radial-gradient(closest-side at 45% 70%, rgba(15,76,92,.10), transparent 62%);
  filter: blur(2px);
  pointer-events: none;
}

.footer-top{
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.08);
}

.footer-main-logo{
  max-height: 82px;
  width: auto;
}

.footer-brand-title{
  font-size: 1.25rem;
  line-height: 1.2;
}

.footer-quote{
  border-left: 4px solid rgba(42,127,186,.35);
  padding-left: .9rem;
  color: rgba(0,0,0,.75);
}
.footer-quote-mark{
  color: rgba(42,127,186,.65);
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-cta{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
}

.footer-grid .footer-card{
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.08);
}

.footer-link{
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover{ text-decoration: underline; }
.footer-link:focus{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(42,127,186,.25);
  border-radius: .5rem;
}

.footer-contact{
  display: grid;
  gap: 1rem;
}

.footer-item{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .75rem;
  align-items: start;
}
.footer-item i,
.footer-item .bi{
  color: var(--brand-2);
  margin-top: .2rem;
}

.footer-divider{
  opacity: .15;
  margin: 2rem 0;
}

.footer-bottom{
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 1.25rem;
}


/* =========================
   10) QUOTE BAR + QUOTE SECTION
   ========================= */
.quote-bar{
  background: #f4f9f8;
  font-style: italic;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: 0.9rem;
}
.quote-text{
  font-weight: 500;
  letter-spacing: .02em;
  color: #0F4C5C;
}
.quote-author{
  color: rgba(0,0,0,.6);
  font-size: 0.85rem;
}
.quote-text::before{ content: "“"; margin-right: 2px; }
.quote-text::after{ content: "”"; margin-left: 2px; }

.quote-section{
  background: linear-gradient(180deg, #f7faf9, #ffffff);
}

.quote-card{
  max-width: 900px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  position: relative;
  border: 1px solid rgba(0,0,0,.05);
}

.quote-mark-top,
.quote-mark-bottom{
  position: absolute;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(42,127,186,.15);
}
.quote-mark-top{ top: 10px; left: 25px; }
.quote-mark-bottom{ bottom: 10px; right: 25px; }


/* =========================
   11) QUOTE HERO (FINAL FULLSCREEN VERSION)
   ========================= */
.quote-hero{
  position: relative;
  height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("img/hero-quote.png") center/cover no-repeat;
  overflow: hidden;
}

.quote-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center,
    rgba(255,255,255,.35) 0%,
    rgba(255,255,255,.15) 45%,
    rgba(255,255,255,0) 70%);
  pointer-events:none;
}

.quote-hero-content{
  position: relative;
  z-index: 1;
}

.quote-text-wrap{
  max-width: 1100px;
  margin: 0 auto;
  transform-origin: center;
  will-change: transform, opacity;
  animation: skyZoomIn 1400ms cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes skyZoomIn{
  0%{
    opacity: 0;
    transform: scale(.25);
    filter: blur(6px);
  }
  40%{
    opacity: 1;
    transform: scale(.75);
    filter: blur(2px);
  }
  75%{
    transform: scale(1.15);
    filter: blur(0);
  }
  100%{
    transform: scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .quote-text-wrap{
    animation: none;
    transform: none;
    opacity: 1;
  }
}

/* FINAL quote-main (you had 3 versions; last one wins) */
.quote-main{
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 auto 1.25rem;

  color: transparent;
  -webkit-text-stroke: 2px #ffffff;

  text-shadow:
    0 0 20px rgba(0,0,0,.25),
    0 10px 30px rgba(0,0,0,.15);
}

.quote-author{
  font-size: 1.15rem;
  font-weight: 600;
  color: #0b1220;
  opacity: .85;
}

/* glass version for quote card */
.quote-card.glass{
  max-width: 980px;
  border-radius: 28px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


/* =========================
   12) MOBILE CTA
   ========================= */
.mobile-cta{
  position: sticky;
  bottom: 0;
  z-index: 1030;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,.10);
  padding: .75rem 0;
}
.quote-hero{
  height: calc(100vh - 90px); /* adjust if your navbar is taller/shorter */
  width: 100%;
  background-image: url("img/hero-quote.png");
  background-position: center 60%; /* moves image down slightly */
  background-size: cover;
  background-repeat: no-repeat;
}
.quote-hero{
  position: relative;
  min-height: 120vh;
  width: 100%;
  background: url("img/hero-quote.png") center center / cover no-repeat;
}

/* Position the quote in upper right sky area */
.quote-position{
  position: absolute;
  top: 18%;
  right: 8%;
  max-width: 650px;
  text-align: right;
}

.quote-text{
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.quote-author{
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 1rem;
  color: #ffffff;
  opacity: 0.95;
}
.quote-text{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

.quote-author{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-top: 1.5rem;
  color: #ffffff;
}

.homecare-info{
  background: #f5f5f5;
}

.info-image-wrap{
  max-width: 480px;
}

.info-image{
  position: relative;
  z-index: 2;
  border: 8px solid #ffffff;
}

.info-accent{
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 70%;
  height: 60%;
  background: linear-gradient(135deg, #27b1c9, #1aa1bf);
  z-index: 1;
}
:root{
  --brand-navy: #0f2d52; /* adjust shade if needed */
}

.text-navy{
  color: var(--brand-navy) !important;
}
:root{
  --brand-navy:#0f2d52;
  --brand-accent:#24b6c9; /* your teal accent */
}

/* Mission section */
.mission{
  background: #ffffff;
}

/* Kicker */
.mission-kicker{
  color: var(--brand-navy);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  margin-bottom: .35rem;
}

/* Title */
.mission-title{
  color: var(--brand-navy);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.1;
}

/* Simple “About us” tag */
.mission-chip{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}
.mission-chip-label{
  color: var(--brand-accent);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
}

/* Image holder */
.mission-image-wrap{
  max-width: 560px;
  margin-left: auto;
}

/* Accent block behind image */
.mission-accent{
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 30%;
  height: 60%;
  background: linear-gradient(135deg, rgba(36,182,201,.95), rgba(15,45,82,.18));
  border-radius: 18px;
  z-index: 1;
}

/* Frame + border */
.mission-frame{
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  border: 10px solid #ffffff;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

/* Image fit */
.mission-img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 991.98px){
  .mission-image-wrap{
    margin-left: 0;
    max-width: 100%;
  }
  .mission-img{
    height: 320px;
  }
}
.mission-title{
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  color: #0f2d52; /* your navy */
  letter-spacing: -0.5px;
  max-width: 700px;
}

/* Add subtle emphasis styling */
.mission-title span{
  color: #24b6c9; /* your accent teal */
}
.mission-title{
  text-wrap: balance;
}
/* Optional polish for the Apply form card + document block */
.apply-card .form-control,
.apply-card .form-select{
  border-radius: .8rem;
}

.apply-card .form-control:focus,
.apply-card .form-select:focus{
  box-shadow: 0 0 0 .25rem rgba(36,182,201,.18);
  border-color: rgba(36,182,201,.55);
}

/* Document section */
.doc-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 1rem;
  background: #f8fbff;
  padding: 1rem;
}

.doc-card .form-text{
  margin-top: .35rem;
}
/* Divider inside same card */
.section-divider{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 1.5rem 0;
}

/* Navy text utility */
.text-navy{
  color: #0f2d52;
}

/* Hide native file input */
.doc-input{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* Upload tile */
.doc-upload{
  display: block;
  border: 1px solid rgba(15,45,82,.15);
  border-radius: 12px;
  padding: 1rem;
  background: #f9fbff;
  cursor: pointer;
  transition: all .2s ease;
}

.doc-upload:hover{
  border-color: #24b6c9;
  background: #f0f9fc;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.doc-name{
  font-weight: 600;
  color: #0f2d52;
}

.doc-hint{
  font-size: .85rem;
  color: rgba(0,0,0,.55);
  margin-top: .25rem;
}
.text-navy{ color:#0f2d52; }

.section-divider{
  height:1px;
  background:rgba(0,0,0,.08);
  margin:1.25rem 0;
}

/* Hide native file input, keep accessible via label */
.doc-input{
  position:absolute;
  width:1px; height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}

.doc-upload{
  display:block;
  border:1px solid rgba(15,45,82,.15);
  border-radius:14px;
  padding:1rem;
  background:#f9fbff;
  cursor:pointer;
  transition:box-shadow .2s ease, border-color .2s ease, transform .08s ease;
  height:100%;
}

.doc-upload:hover{
  border-color:rgba(36,182,201,.7);
  box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.doc-upload:active{ transform: translateY(1px); }

.doc-upload-top{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  margin-bottom:.75rem;
}

.doc-ico{
  font-size:1.15rem;
  color:#0f2d52;
  background:rgba(15,45,82,.08);
  border-radius:12px;
  width:40px; height:40px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}

.doc-name{
  font-weight:700;
  color:#0f2d52;
  line-height:1.2;
}

.doc-hint{
  font-size:.85rem;
  color:rgba(0,0,0,.55);
  margin-top:.15rem;
}

.doc-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:.75rem;
  padding-top:.6rem;
  border-top:1px dashed rgba(0,0,0,.12);
}

.doc-format{
  font-size:.8rem;
  color:rgba(0,0,0,.6);
}

.doc-action{
  font-weight:700;
  color:#0f2d52;
}

/* ADA focus */
.doc-upload:focus-within{
  outline:3px solid rgba(36,182,201,.55);
  outline-offset:2px;
}
/* Unified Apply section shell */
.apply-shell{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
}

/* Left column */
.apply-left{
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
  border-right:1px solid rgba(0,0,0,.06);
}
@media (max-width: 991.98px){
  .apply-left{ border-right:0; border-bottom:1px solid rgba(0,0,0,.06); }
}

.apply-left-inner{ height:100%; display:flex; flex-direction:column; }

.apply-media{
  position:relative;
  aspect-ratio: 16/10;
  overflow:hidden;
}
.apply-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.apply-copy{
  padding:1.5rem 1.5rem 1.75rem;
}

.apply-title{
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height:1.15;
  color:#0f2d52;
}

/* List styling */
.apply-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:1rem;
}
.apply-points li{
  display:flex;
  gap:.85rem;
  align-items:flex-start;
}
.apply-ico{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(15,45,82,.08);
  color:#0f2d52;
  flex:0 0 auto;
  font-size:1.05rem;
}

/* Tip box */
.apply-tip{
  margin-top:1.25rem;
  display:flex;
  gap:.6rem;
  align-items:flex-start;
  padding:.9rem 1rem;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.07);
  background:#fbfcff;
}
.apply-tip i{ color:#0f2d52; margin-top:.1rem; }

/* Right column */
.apply-right-inner{
  padding:1.5rem 1.5rem 1.75rem;
}

.apply-form-title{
  font-size:1.35rem;
  color:#0f2d52;
}

/* Divider inside same shell */
.apply-divider{
  height:1px;
  background:rgba(0,0,0,.08);
  margin:1rem 0 1.25rem;
}

.apply-navy{ color:#0f2d52; }

/* Upload UI */
.doc-input{
  position:absolute;
  width:1px; height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}

.doc-upload{
  display:block;
  height:100%;
  border:1px solid rgba(15,45,82,.14);
  border-radius:16px;
  padding:1rem;
  background:#f9fbff;
  cursor:pointer;
  transition: box-shadow .2s ease, border-color .2s ease, transform .08s ease;
}

.doc-upload:hover{
  border-color: rgba(36,182,201,.75);
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
}

.doc-upload:active{ transform: translateY(1px); }

.doc-upload-top{
  display:flex;
  gap:.75rem;
  align-items:flex-start;
  margin-bottom:.75rem;
}

.doc-ico{
  width:44px; height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(15,45,82,.08);
  color:#0f2d52;
  font-size:1.1rem;
  flex:0 0 auto;
}

.doc-name{
  font-weight:800;
  color:#0f2d52;
  line-height:1.2;
}

.doc-hint{
  font-size:.85rem;
  color:rgba(0,0,0,.55);
  margin-top:.15rem;
}

.doc-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:.75rem;
  padding-top:.6rem;
  border-top:1px dashed rgba(0,0,0,.14);
}

.doc-format{
  font-size:.8rem;
  color:rgba(0,0,0,.6);
}

.doc-action{
  font-weight:800;
  color:#0f2d52;
}

/* ADA focus */
.doc-upload:focus-within{
  outline:3px solid rgba(36,182,201,.55);
  outline-offset:2px;
}