/* ============================================================
   STRICTLY HEALING TRANSPORTATION â€” SHARED STYLESHEET
   ============================================================ */
:root {
  --navy: #0D2137;
  --navy-mid: #1A3A5C;
  --teal: #1B7A8A;
  --teal-light: #2BA8BC;
  --gold: #C8912A;
  --gold-light: #E5B05A;
  --cream: #F7F4EF;
  --cream-dark: #EDE8DF;
  --white: #FFFFFF;
  --text: #1C2B3A;
  --muted: #607080;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Nunito',sans-serif;background:var(--white);color:var(--text);overflow-x:hidden;}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.4;}}

/* ===================== NAV ===================== */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:.4rem 5%;
  background:rgba(13,33,55,0.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(43,168,188,0.15);
}
.nav-logo{
  display:flex;align-items:center;gap:.7rem;
  text-decoration:none;
}
.nav-logo img{height:100px;width:auto;display:block;}
.nav-links{display:flex;align-items:center;gap:1.6rem;list-style:none;}
.nav-links a{
  font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.7);text-decoration:none;transition:color .2s;
}
.nav-links a:hover,.nav-links a.active{color:var(--teal-light);}
.nav-cta{
  background:var(--teal)!important;color:var(--white)!important;
  padding:.5rem 1.2rem!important;border-radius:3px;
  transition:background .2s!important;
}
.nav-cta:hover{background:var(--teal-light)!important;}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px;}
.nav-hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px;transition:.3s;}

/* ===================== SOCIAL FLOATING BAR ===================== */
.social-float{
  position:fixed;right:0;top:50%;transform:translateY(-50%);
  z-index:190;
  display:flex;flex-direction:column;gap:0;
}
.social-float a{
  display:flex;align-items:center;justify-content:center;
  width:48px;height:48px;
  text-decoration:none;
  transition:width .25s,background .2s;
  overflow:hidden;
  position:relative;
}
.social-float a:first-child{border-radius:6px 0 0 0;}
.social-float a:last-child{border-radius:0 0 0 6px;}
.social-float a.sf-fb{background:#1877F2;}
.social-float a.sf-ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);}
.social-float a.sf-yt{background:#FF0000;}
.social-float a.sf-li{background:#0A66C2;}
.social-float a:hover{width:64px;}
.social-float a svg{width:22px;height:22px;fill:#fff;flex-shrink:0;}

/* ===================== SECTION BASE ===================== */
.section{padding:5.5rem 5%;}
.section-inner{max-width:1200px;margin:0 auto;}
.section-header{margin-bottom:3rem;}
.section-eyebrow{
  display:inline-block;
  font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--teal);margin-bottom:.7rem;
}
.section-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.9rem,3.2vw,2.8rem);
  font-weight:700;line-height:1.15;
  color:var(--navy);margin-bottom:.9rem;
}
.section-title em{font-style:normal;font-weight:700;color:var(--teal);}
.section-body{
  font-size:.97rem;line-height:1.85;
  color:var(--muted);font-weight:400;max-width:560px;
}

/* ===================== BUTTONS ===================== */
.btn-primary{
  background:linear-gradient(135deg,var(--teal),var(--teal-light));
  color:var(--white);padding:.85rem 1.9rem;
  font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  text-decoration:none;border-radius:3px;
  transition:opacity .2s,transform .2s;display:inline-block;
  box-shadow:0 8px 24px rgba(27,122,138,.35);
}
.btn-primary:hover{opacity:.9;transform:translateY(-2px);}
.btn-ghost{
  border:1px solid rgba(255,255,255,.25);
  color:var(--white);padding:.85rem 1.9rem;
  font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  text-decoration:none;border-radius:3px;
  transition:border-color .2s,background .2s;display:inline-block;
}
.btn-ghost:hover{border-color:var(--teal-light);background:rgba(43,168,188,.08);}
.btn-gold{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--white);padding:.85rem 1.9rem;
  font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  text-decoration:none;border-radius:3px;display:inline-block;
  box-shadow:0 8px 24px rgba(200,145,42,.35);
  transition:opacity .2s,transform .2s;
}
.btn-gold:hover{opacity:.9;transform:translateY(-2px);}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero{
  background:var(--navy);
  padding:7rem 5% 4rem;
  position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 70% at 80% 50%,rgba(27,122,138,.2) 0%,transparent 65%);
}
.page-hero-inner{position:relative;z-index:2;max-width:1200px;margin:0 auto;}
.page-hero-eyebrow{
  display:inline-block;
  font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--teal-light);margin-bottom:.8rem;
}
.page-hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,4vw,3.5rem);
  font-weight:700;color:var(--white);line-height:1.1;
  margin-bottom:1rem;
}
.page-hero-title em{font-style:normal;font-weight:700;color:var(--teal-light);}
.page-hero-sub{
  font-size:1rem;color:rgba(255,255,255,.6);
  line-height:1.75;max-width:540px;
}

/* ===================== TRUST BAR ===================== */
.trust-bar{
  background:var(--teal);
  padding:1rem 5%;
  display:flex;align-items:center;justify-content:center;
  gap:2.5rem;flex-wrap:wrap;
}
.trust-item{
  display:flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.9);
}
.trust-dot{display:inline-block;width:6px;height:6px;background:rgba(255,255,255,.6);border-radius:50%;flex-shrink:0;}

/* ===================== FOOTER ===================== */
footer{
  background:var(--navy);
  padding:4rem 5% 2rem;
  color:rgba(255,255,255,.6);
}
.footer-inner{max-width:1200px;margin:0 auto;}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;margin-bottom:3rem;
}
.footer-brand img{height:260px;width:auto;margin-bottom:1rem;}
.footer-brand p{font-size:.85rem;line-height:1.7;color:rgba(255,255,255,.5);max-width:280px;}
.footer-col-title{
  font-size:.68rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  color:var(--teal-light);margin-bottom:1rem;
}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.55rem;}
.footer-links a{
  font-size:.85rem;color:rgba(255,255,255,.55);
  text-decoration:none;transition:color .2s;
}
.footer-links a:hover{color:var(--teal-light);}
.footer-contact-item{font-size:.85rem;color:rgba(255,255,255,.55);margin-bottom:.5rem;line-height:1.5;}
.footer-contact-item a{color:rgba(255,255,255,.55);text-decoration:none;}
.footer-contact-item a:hover{color:var(--teal-light);}
.footer-social{display:flex;gap:.7rem;margin-top:1.2rem;}
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;transition:opacity .2s;
}
.footer-social a:hover{opacity:.8;}
.footer-social a.fs-fb{background:#1877F2;}
.footer-social a.fs-ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);}
.footer-social a.fs-yt{background:#FF0000;}
.footer-social a.fs-li{background:#0A66C2;}
.footer-social a svg{width:16px;height:16px;fill:#fff;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:1.5rem;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;
  font-size:.75rem;color:rgba(255,255,255,.35);
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr;}
  .social-float{display:none;}
}
@media(max-width:900px){
  .nav-links{display:none;}
  .nav-hamburger{display:flex;}
  .nav-links.open{
    display:flex;flex-direction:column;
    position:fixed;top:70px;left:0;right:0;
    background:rgba(13,33,55,.98);
    padding:1.5rem 5%;gap:1.2rem;
    border-bottom:1px solid rgba(43,168,188,.15);
  }
  .footer-grid{grid-template-columns:1fr;}
  .section{padding:4rem 5%;}
}

.title-accent{font-style:normal;font-weight:700;color:var(--teal);}

.btn-outline{
  border:1px solid rgba(255,255,255,.35);
  color:rgba(255,255,255,.85);
  padding:.85rem 1.9rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  border-radius:3px;
  display:inline-block;
  transition:border-color .2s,background .2s;
}
.btn-outline:hover{
  border-color:var(--teal-light);
  background:rgba(43,168,188,.08);
}