:root{
  --primary:#0056B3;
  --secondary:#0B2D5C;
  --accent:#1E88E5;
  --frost:#EAF4FC;
  --bg:#F8FAFC;
  --text:#333333;
  --muted:#6B7785;
  --radius:12px;
}
*{box-sizing:border-box;}
html{scroll-padding-top:188px;} /* keeps anchor targets clear of the sticky nav — e.g. #why-choose-us, #services; tuned for the 135px nav logo at py-1 */
body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
  margin:0;
  line-height:1.65;
}
h1,h2,h3,h4,.brand-word{font-family:'Poppins',sans-serif;}
h2.section-title{
  font-weight:700;
  font-size:1.7rem;
  letter-spacing:.02em;
  color:var(--secondary);
  text-transform:uppercase;
  margin-bottom:.6rem;
}
.title-underline{width:56px;height:3px;background:var(--accent);border-radius:3px;}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  font-weight:600;
  color:var(--accent);
}
.btn-frost{
  display:inline-flex;align-items:center;gap:8px;
  padding:.85rem 1.6rem;
  border-radius:30px;
  font-weight:600;
  font-size:.95rem;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-frost-primary{background:var(--primary);color:#fff;box-shadow:0 8px 20px rgba(0,86,179,.25);}
.btn-frost-primary:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(0,86,179,.32);color:#fff;}
.btn-frost-outline{background:#fff;color:var(--primary);border:1.5px solid var(--primary);}
.btn-frost-outline:hover{transform:translateY(-2px);background:var(--frost);color:var(--primary);}

/* frost divider - signature element */
.frost-divider{
  height:34px;
  background:var(--bg);
  position:relative;
  overflow:hidden;
}
.frost-divider svg{position:absolute;top:0;left:0;width:100%;height:100%;}

/* NAVBAR */
.navbar-cf{
  background:#fff;
  box-shadow:0 2px 16px rgba(11,45,92,.06);
  position:sticky;top:0;z-index:1000;
}
.navbar-cf .nav-link{
  color:var(--secondary)!important;
  font-weight:500;
  font-size:.95rem;
  margin:0 4px;
}
.navbar-cf .nav-link.active{color:var(--primary)!important;font-weight:600;}
.nav-flex-row{position:relative;}
@media (min-width:992px){
  /* True centering: position the links at the bar's horizontal midpoint
     rather than relying on margin:auto, which would only look centered
     if the logo and phone button happened to be the same width. */
  .nav-center-wrap{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
  }
}
.brand-logo{display:flex;align-items:center;gap:10px;}
.brand-logo img{height:135px;width:auto;}
.footer-logo{height:95px;width:auto;filter:brightness(0) invert(1);}
.call-btn{
  background:var(--primary);color:#fff;border-radius:30px;
  padding:.55rem 1.1rem;font-weight:600;font-size:.85rem;
  display:flex;align-items:center;gap:8px;text-decoration:none;
}
.call-btn small{display:block;font-weight:500;opacity:.85;font-size:.65rem;}

/* HERO */
.hero{
  position:relative;
  min-height:480px;
  display:flex;
  align-items:center;
  background-color:var(--secondary); /* fallback while the photo loads */
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  overflow:hidden;
  padding:60px 0;
}
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(90deg,
    rgba(245,247,250,.97) 0%,
    rgba(245,247,250,.97) 42%,
    rgba(245,247,250,.7) 55%,
    rgba(245,247,250,0) 68%);
  z-index:1;
}
.hero .container{position:relative;z-index:2;}
.hero-copy{max-width:560px;position:relative;z-index:2;}
.hero-copy .eyebrow{color:var(--accent);}
.hero-copy h1{
  color:var(--secondary);font-weight:800;font-size:2.7rem;line-height:1.14;
  margin:.5rem 0 1rem;
}
.hero-copy p.lead-text{color:var(--muted);font-size:1.02rem;max-width:460px;margin-bottom:1.5rem;}
.hero-feature{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px;}
.hero-feature i{
  width:38px;height:38px;flex:none;
  background:#fff;
  border:1px solid rgba(0,86,179,.15);
  box-shadow:0 4px 12px rgba(11,45,92,.12);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:var(--primary);font-size:1.05rem;
}
.hero-feature .ft-title{color:var(--secondary);font-weight:700;font-size:.78rem;line-height:1.3;text-transform:uppercase;letter-spacing:.02em;}
.hero-feature .ft-sub{color:var(--muted);font-size:.72rem;line-height:1.3;margin-top:2px;}

/* HERO — dark variant (photo-heavy page banner, e.g. Services page) */
.hero-scrim-dark{
  background:linear-gradient(90deg,
    rgba(11,45,92,.95) 0%,
    rgba(11,45,92,.82) 45%,
    rgba(11,45,92,.55) 70%,
    rgba(11,45,92,.3) 100%);
}
.hero-dark .hero-copy{max-width:640px;}
.hero-dark .hero-copy h1{color:#fff;}
.hero-dark .hero-copy p.lead-text{color:#CFE0F2;max-width:560px;}
.hero-dark .hero-feature i{
  background:transparent;border:1.5px solid rgba(255,255,255,.55);
  box-shadow:none;color:#fff;border-radius:50%;
}
.hero-dark .hero-feature .ft-title{color:#fff;}
.hero-dark .hero-feature .ft-sub{color:#CFE0F2;}

/* SERVICES */
.service-card{
  background:#fff;border-radius:var(--radius);
  border:1px solid #E7EEF5;
  overflow:hidden;height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{transform:translateY(-6px);box-shadow:0 16px 30px rgba(11,45,92,.1);}
.service-photo{
  height:240px;position:relative;
  background:linear-gradient(135deg,var(--secondary),var(--primary));
  background-size:cover;background-position:center;
}
.service-photo i.bg-icon{
  position:absolute;right:14px;top:14px;color:rgba(255,255,255,.35);font-size:1.6rem;
}
.service-icon{
  width:56px;height:56px;border-radius:50%;
  background:#fff;color:var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;
  box-shadow:0 6px 14px rgba(11,45,92,.12);
  border:1px solid #E7EEF5;
}
.service-body{padding:1.3rem 1.3rem 1.5rem;}
.service-card h3{font-size:1.02rem;font-weight:700;color:var(--secondary);margin-bottom:.5rem;text-transform:uppercase;letter-spacing:.01em;}
.service-card p{font-size:.86rem;color:var(--muted);margin-bottom:0;}

/* BREAKDOWN BANNER */
.breakdown-banner{
  background:linear-gradient(90deg, var(--secondary) 0%, #0d3f7a 55%, var(--primary) 100%);
  color:#fff;padding:1.75rem 0;
}
.breakdown-banner .badge-24{
  position:relative;
  width:92px;height:92px;flex:none;
  display:flex;align-items:center;justify-content:center;
}
.breakdown-banner .badge-24 i.bi-arrow-repeat{
  position:absolute;inset:0;
  font-size:92px;line-height:1;
  color:rgba(255,255,255,.85);
}
.breakdown-banner .badge-24 .badge-24-text{
  position:relative;z-index:1;
  font-weight:800;font-size:.92rem;line-height:1.15;text-align:center;
}
.breakdown-banner h2{font-weight:800;margin:0;font-size:1.15rem;text-transform:uppercase;letter-spacing:.01em;}
.breakdown-banner p{margin:0;color:#CFE0F2;font-size:.92rem;}
.breakdown-divider{width:1px;align-self:stretch;background:rgba(255,255,255,.25);}
.breakdown-banner .phone-pill{
  background:transparent;border:1.5px solid rgba(255,255,255,.55);
  color:#fff;text-decoration:none;
  border-radius:30px;padding:.65rem 1.4rem;font-weight:700;font-size:1.05rem;
  display:flex;align-items:center;gap:10px;
  transition:background .15s ease;
}
.breakdown-banner .phone-pill:hover{background:rgba(255,255,255,.1);color:#fff;}

/* ABOUT / WHY */
.snowflake-illustration{width:100%;max-width:150px;height:auto;opacity:.85;}
.why-item{display:flex;gap:14px;margin-bottom:1.4rem;}
.why-item i{
  width:44px;height:44px;flex:none;border-radius:10px;
  background:var(--frost);color:var(--primary);
  display:flex;align-items:center;justify-content:center;font-size:1.15rem;
}
.why-item h4{font-size:1rem;font-weight:600;color:var(--secondary);margin-bottom:.2rem;}
.why-item p{font-size:.86rem;color:var(--muted);margin:0;}


/* PROJECTS */
.project-card{
  border-radius:var(--radius);overflow:hidden;position:relative;
  height:200px;background:linear-gradient(135deg,var(--secondary),var(--primary));
  background-size:cover;background-position:center;
  display:flex;align-items:flex-end;
}
.project-card .overlay{
  position:relative;z-index:2;padding:1rem;color:#fff;width:100%;
  background:linear-gradient(to top, rgba(11,45,92,.85), transparent);
}
.project-card .overlay p{margin:0;font-weight:600;font-size:.92rem;}
.project-card i.bg-icon{
  position:absolute;right:14px;top:14px;color:rgba(255,255,255,.35);font-size:1.6rem;
}

/* TESTIMONIALS */
.testimonial-strip{background:var(--secondary);color:#fff;padding:3rem 0;}
.testimonial-card{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);padding:1.4rem;height:100%;
}
.testimonial-card i.quote{color:#8FC7FF;font-size:1.4rem;}
.testimonial-card p.msg{font-size:.9rem;color:#DCE8F5;margin:.8rem 0 1rem;}
.testimonial-card .stars{color:#FFC93C;font-size:.8rem;margin-bottom:.4rem;}
.testimonial-card .who{font-size:.82rem;font-weight:600;color:#fff;}

/* FOOTER */
footer{background:#081F3F;color:#B9CBE0;padding:3.5rem 0 1.5rem;font-size:.88rem;}
footer h5{color:#fff;font-weight:600;font-size:.95rem;margin-bottom:1rem;}
footer a{color:#B9CBE0;text-decoration:none;}
footer a:hover{color:#8FC7FF;}
footer ul{list-style:none;padding:0;margin:0;}
footer li{margin-bottom:.5rem;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:2rem;padding-top:1.2rem;font-size:.78rem;color:#7C93AE;}
.social-ico{
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.08);
  display:inline-flex;align-items:center;justify-content:center;color:#fff;margin-right:8px;text-decoration:none;
}
.social-ico-dark{background:var(--frost);color:var(--primary);}
.social-ico-dark:hover{background:var(--primary);color:#fff;}

/* Shared utility classes used across inner pages */
.text-muted-cf{color:var(--muted);}
.rounded-cf{border-radius:var(--radius);}
.title-underline-light{background:#8FC7FF;}

/* PROJECTS PAGE — filter buttons */
.filter-btn{
  border:1.5px solid #DCE6F0;background:#fff;color:var(--secondary);
  padding:.5rem 1.2rem;border-radius:30px;font-size:.85rem;font-weight:600;
  cursor:pointer;transition:all .15s ease;
}
.filter-btn:hover{border-color:var(--accent);color:var(--accent);}
.filter-btn.active{background:var(--primary);border-color:var(--primary);color:#fff;}

/* CONTACT PAGE */
.contact-info-card{
  background:#fff;border:1px solid #E7EEF5;border-radius:var(--radius);
  padding:1.4rem 1.1rem;text-align:center;height:100%;
  display:flex;flex-direction:column;align-items:center;gap:.2rem;
  transition:transform .18s ease, box-shadow .18s ease;
}
.contact-info-card:hover{transform:translateY(-4px);box-shadow:0 14px 26px rgba(11,45,92,.08);}
.contact-info-card i{
  width:48px;height:48px;border-radius:50%;
  background:var(--frost);color:var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;margin-bottom:.4rem;
}
.contact-info-card h3{font-size:.92rem;font-weight:700;color:var(--secondary);margin-bottom:.3rem;}
.contact-info-card a,.contact-info-card span{font-size:.82rem;color:var(--muted);text-decoration:none;line-height:1.5;}
.contact-info-card a:hover{color:var(--primary);}

.form-label{font-weight:600;color:var(--secondary);font-size:.9rem;}
.form-control,.form-select{border-radius:8px;border-color:#DCE6F0;padding:.6rem .9rem;}
.form-control:focus,.form-select:focus{border-color:var(--accent);box-shadow:0 0 0 .2rem rgba(30,136,229,.15);}

.address-card{
  display:flex;align-items:center;gap:.6rem;
  background:var(--frost);border-radius:var(--radius);
  padding:.9rem 1.1rem;color:var(--secondary);font-size:.88rem;font-weight:600;
}
.address-card i{color:var(--primary);font-size:1.1rem;flex:none;}

.why-customers-item{padding:0 .5rem;}
.why-customers-item i{
  width:56px;height:56px;border-radius:50%;
  background:var(--frost);color:var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;margin:0 auto .7rem;
}
.why-customers-item h3{font-size:.85rem;color:var(--secondary);}


/* SERVICES PAGE — Our Core Services cards */
.core-service-card{
  display:flex;background:#fff;border:1px solid #E7EEF5;border-radius:var(--radius);
  overflow:hidden;height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}
.core-service-card:hover{transform:translateY(-4px);box-shadow:0 14px 26px rgba(11,45,92,.08);}
.core-service-text{padding:1.3rem;flex:1;display:flex;flex-direction:column;min-width:0;}
.core-service-icon{
  width:48px;height:48px;border-radius:50%;
  background:var(--frost);color:var(--primary);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;margin-bottom:.8rem;
}
.core-service-text h3{font-size:.98rem;font-weight:700;color:var(--secondary);margin-bottom:.4rem;}
.core-service-text p{font-size:.82rem;color:var(--muted);margin-bottom:.8rem;flex:1;}
.core-service-text a{font-size:.85rem;font-weight:600;color:var(--primary);text-decoration:none;display:inline-flex;align-items:center;gap:4px;}
.core-service-text a:hover{color:var(--secondary);}
.core-service-photo{width:120px;flex:none;background-size:cover;background-position:center;}

/* SERVICES PAGE — Why Choose Cargo Fridge? (outlined icon row) */
.why-choose-services-panel{background:var(--frost);border-radius:var(--radius);padding:2.5rem 1.5rem;}
.why-choose-services-item{padding:0 .4rem;}
.why-choose-services-item i{
  width:56px;height:56px;border-radius:50%;
  background:#fff;color:var(--primary);border:1.5px solid rgba(0,86,179,.25);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;margin:0 auto .8rem;
}
.why-choose-services-item h3{font-size:.88rem;font-weight:700;color:var(--secondary);margin-bottom:.3rem;}
.why-choose-services-item p{font-size:.78rem;color:var(--muted);margin:0;}

/* SERVICES PAGE — custom solution CTA banner (same gradient as breakdown-banner) */
.custom-solution-banner{
  background:linear-gradient(90deg, var(--secondary) 0%, #0d3f7a 55%, var(--primary) 100%);
  color:#fff;padding:1.5rem 0;
}
.custom-solution-banner .cta-icon{
  width:52px;height:52px;flex:none;border-radius:50%;
  border:1.5px solid rgba(255,255,255,.5);
  display:flex;align-items:center;justify-content:center;font-size:1.3rem;
}
.custom-solution-banner h2{font-weight:800;margin:0;font-size:1.1rem;}
.custom-solution-banner p{margin:0;color:#CFE0F2;font-size:.88rem;}

/* Subtle scroll-triggered fade-in (paired with site.js IntersectionObserver) */
.fade-in-up{opacity:0;transform:translateY(16px);transition:opacity .5s ease, transform .5s ease;}
.fade-in-up.is-visible{opacity:1;transform:translateY(0);}
