/*
Theme Name: Bravo Line Training Pro
Theme URI: https://bravolinetraining.com
Author: Bravo Line Training
Description: A modern WordPress theme for CPR, First Aid, AED, Stop the Bleed, workplace safety, and emergency preparedness training.
Version: 2.0
License: GPLv2 or later
Text Domain: bravoline-pro
*/

:root{
  --navy:#0b1220;
  --navy-2:#101a2e;
  --red:#d12d2d;
  --red-dark:#a92222;
  --gold:#f2b84b;
  --white:#ffffff;
  --light:#f5f7fb;
  --muted:#64748b;
  --text:#111827;
  --border:#e5e7eb;
  --shadow:0 22px 70px rgba(11,18,32,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;height:auto}
.container{width:min(1160px,calc(100% - 40px));margin:0 auto}
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
}
.brand-mark{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:white;
  background:linear-gradient(135deg,var(--red),#771b1b);
  font-weight:900;
  letter-spacing:-1px;
  box-shadow:0 12px 30px rgba(209,45,45,.28);
}
.brand strong{display:block;font-size:1.05rem;line-height:1.15}
.brand span span{display:block;color:var(--muted);font-size:.78rem;font-weight:700}
.nav-links{display:flex;align-items:center;gap:24px}
.nav-links a{text-decoration:none;font-weight:800;color:#263244;font-size:.95rem}
.nav-links a:hover{color:var(--red)}
.nav-cta{
  color:white!important;
  background:var(--red);
  padding:10px 17px;
  border-radius:999px;
}
.menu-toggle{display:none;border:0;background:transparent;font-size:1.9rem}

.hero{
  color:white;
  background:
    radial-gradient(circle at 80% 20%,rgba(209,45,45,.55),transparent 28%),
    linear-gradient(135deg,rgba(11,18,32,.96),rgba(16,26,46,.92)),
    var(--navy);
  overflow:hidden;
}
.hero-grid{
  min-height:720px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
  padding:90px 0;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  font-weight:900;
}
.hero .eyebrow,.dark-section .eyebrow,.cta-band .eyebrow{color:#ff7373}
h1,h2,h3{margin:0;line-height:1.06;letter-spacing:-.045em}
h1{font-size:clamp(2.7rem,7vw,5.8rem);max-width:850px}
h2{font-size:clamp(2rem,4vw,3.55rem)}
h3{font-size:1.35rem}
.lead{
  margin:25px 0 0;
  max-width:720px;
  color:rgba(255,255,255,.78);
  font-size:1.22rem;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 21px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:0;
}
.btn-primary{background:var(--red);color:white}
.btn-primary:hover{background:var(--red-dark)}
.btn-secondary{border:1px solid rgba(255,255,255,.25);color:white;background:rgba(255,255,255,.08)}
.btn-light{background:white;color:var(--navy)}
.stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:34px;max-width:720px}
.stat{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.07);
  border-radius:18px;
  padding:16px;
}
.stat strong{display:block;font-size:1.25rem}
.stat span{color:rgba(255,255,255,.68);font-size:.9rem}
.hero-panel{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.18);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
}
.panel-top{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:24px;
}
.pulse{
  width:48px;height:48px;border-radius:50%;
  background:rgba(209,45,45,.22);
  display:grid;place-items:center;
  color:#ff8888;
  font-size:1.6rem;
}
.hero-panel p,.hero-panel li{color:rgba(255,255,255,.76)}
.hero-panel ul{margin:18px 0 0;padding-left:20px}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.badges span{
  color:white;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  padding:7px 11px;
  border-radius:999px;
  font-weight:800;
  font-size:.84rem;
}

.section{padding:88px 0}
.section-light{background:var(--light)}
.section-head{
  max-width:760px;
  margin-bottom:38px;
}
.section-head p:not(.eyebrow){color:var(--muted);font-size:1.08rem}
.course-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:30px;
  box-shadow:0 12px 35px rgba(15,23,42,.06);
}
.card-icon{
  width:46px;height:46px;border-radius:14px;
  display:grid;place-items:center;
  background:#fee2e2;
  color:var(--red);
  font-weight:900;
  margin-bottom:18px;
}
.card p{color:var(--muted);margin-bottom:0}
.card ul{color:var(--muted);padding-left:18px;margin-bottom:0}
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:center;
}
.dark-section{
  background:var(--navy);
  color:white;
}
.dark-section p{color:rgba(255,255,255,.76)}
.check-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.check{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  padding:16px 18px;
  font-weight:800;
}
.check:before{content:"✓";color:#69e097;margin-right:10px}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  border-left:4px solid var(--red);
  background:white;
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
}
.step strong{
  display:inline-grid;
  place-items:center;
  width:34px;height:34px;
  border-radius:999px;
  background:var(--navy);
  color:white;
  margin-bottom:16px;
}
.cta-band{
  color:white;
  background:
    linear-gradient(135deg,rgba(209,45,45,.92),rgba(11,18,32,.96)),
    var(--red);
  padding:62px 0;
}
.cta-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}
.cta-grid p{color:rgba(255,255,255,.78);margin-bottom:0}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.faq{
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  background:white;
}
.faq p{color:var(--muted);margin-bottom:0}
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:38px;
}
.contact-box{
  background:var(--navy);
  color:white;
  border-radius:24px;
  padding:28px;
}
.contact-box p{margin:0 0 12px;color:rgba(255,255,255,.8)}
.contact-box p:last-child{margin-bottom:0}
.form{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.form label{display:block;font-weight:900;margin-bottom:16px}
.form input,.form select,.form textarea{
  width:100%;
  margin-top:7px;
  border:1px solid var(--border);
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
}
.form textarea{resize:vertical}
.form-note{display:block;margin-top:12px;color:var(--muted)}
.site-footer{
  background:#080d16;
  color:rgba(255,255,255,.72);
  padding:32px 0;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media (max-width:900px){
  .menu-toggle{display:block}
  .nav-links{
    display:none;
    position:absolute;
    left:20px;
    right:20px;
    top:78px;
    background:white;
    border:1px solid var(--border);
    border-radius:20px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .hero-grid,.split,.contact-grid{grid-template-columns:1fr}
  .hero-grid{min-height:auto;padding:70px 0}
  .course-grid{grid-template-columns:1fr 1fr}
  .process-grid{grid-template-columns:1fr 1fr}
  .cta-grid{align-items:flex-start;flex-direction:column}
}
@media (max-width:620px){
  .container{width:min(100% - 28px,1160px)}
  .course-grid,.process-grid,.faq-grid,.stat-row,.check-grid{grid-template-columns:1fr}
  .section{padding:64px 0}
  .brand span span{display:none}
}
