/* EMT Paramedic Tutor — Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #003087;
  --red: #CC0000;
  --white: #ffffff;
  --light: #f5f7fa;
  --dark: #111827;
  --gray: #6b7280;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* ── NAV ── */
.wp-site-blocks header,
.site-header, header.wp-block-template-part {
  background: var(--navy) !important;
  border-bottom: 3px solid var(--red) !important;
  padding: 0.75rem 2rem !important;
}
.wp-site-blocks header a,
.site-header a, header a {
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.wp-site-blocks header .wp-block-site-title a,
.site-title a {
  font-size: 1.4rem !important;
  letter-spacing: 0.5px;
}

/* ── HERO ── */
.emt-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #001a4d 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1612277795421-9bc7706a4a34?w=1400&q=60') center/cover no-repeat;
  opacity: 0.08;
}
.emt-hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.emt-hero-badge {
  display: inline-block;
  background: rgba(204,0,0,0.2);
  border: 1px solid rgba(204,0,0,0.5);
  color: #ffaaaa;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}
.emt-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: white;
}
.emt-hero .subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.emt-btn {
  display: inline-block;
  background: var(--red);
  color: white !important;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  margin: 0.4rem;
  transition: all 0.2s ease;
  border: 2px solid var(--red);
}
.emt-btn:hover {
  background: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.35);
}
.emt-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: white !important;
}
.emt-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.emt-btn-white {
  background: white;
  color: var(--red) !important;
  border-color: white;
}
.emt-btn-white:hover {
  background: #f0f0f0;
  color: var(--red) !important;
}

/* ── TRUST BAR ── */
.emt-trust-bar {
  background: var(--navy);
  padding: 1.25rem 2rem;
}
.emt-trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.emt-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.emt-trust-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
}
.emt-trust-item span {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.15rem;
}

/* ── SECTIONS ── */
.emt-section {
  padding: 70px 20px;
  background: var(--white);
}
.emt-section-alt {
  background: var(--light);
}
.emt-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.emt-label {
  display: inline-block;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.emt-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

/* ── ABOUT GRID ── */
.emt-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
}
.emt-about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.emt-about-text h2 {
  margin-bottom: 1rem;
}
.emt-about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1rem;
}

/* ── HOW IT WORKS ── */
.emt-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.emt-step {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
}
.emt-step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.emt-step h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

/* ── SERVICE CARDS ── */
.emt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.emt-card {
  background: white;
  border-radius: 10px;
  padding: 1.75rem;
  border-top: 4px solid var(--navy);
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.emt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.emt-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.emt-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.emt-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.emt-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.emt-testimonial {
  background: white;
  border-radius: 10px;
  padding: 1.75rem;
  border-left: 4px solid var(--red);
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
}
.emt-testimonial p {
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.emt-testimonial strong {
  color: var(--navy);
  font-size: 0.9rem;
}
.emt-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ── CTA SECTION ── */
.emt-cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #990000 100%);
  padding: 70px 20px;
  text-align: center;
  color: white;
}
.emt-cta-inner {
  max-width: 650px;
  margin: 0 auto;
}
.emt-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: white;
  margin-bottom: 1rem;
}
.emt-cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
.wp-site-blocks footer,
.site-footer, footer.wp-block-template-part {
  background: #001133 !important;
  color: rgba(255,255,255,0.7) !important;
  padding: 2rem !important;
  text-align: center;
}
.wp-site-blocks footer a, .site-footer a, footer a {
  color: rgba(255,255,255,0.6) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .emt-about-grid {
    grid-template-columns: 1fr;
  }
  .emt-about-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .emt-trust-bar-inner {
    gap: 1.2rem;
  }
}

/* ── HERO BACKGROUND — more visible EMS imagery ── */
.emt-hero::before {
  background: url('https://images.unsplash.com/photo-1599045118108-bf9954418b76?w=1600&q=70') center/cover no-repeat !important;
  opacity: 0.15 !important;
}

/* ── IMAGE STRIP ── */
.emt-image-strip {
  background: var(--navy);
  padding: 1.5rem 20px;
}
.emt-image-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
}
.emt-strip-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.emt-strip-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  filter: brightness(0.85);
}
.emt-strip-img:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.emt-strip-img-featured img {
  height: 220px;
  border: 3px solid var(--red);
}
.emt-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0.75rem 0.6rem 0.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── PRICING SECTION (placeholder, rates to be added) ── */
.emt-pricing {
  padding: 70px 20px;
  background: var(--white);
  text-align: center;
}
.emt-pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}
.emt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.emt-price-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.2s ease;
  position: relative;
}
.emt-price-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.emt-price-card.featured {
  border-color: var(--red);
  background: #fff8f8;
}
.emt-price-card .featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.emt-price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.emt-price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.emt-price-amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
}
.emt-price-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0.75rem 0 1.5rem;
  line-height: 1.6;
}
.emt-price-card .emt-btn {
  width: 100%;
  text-align: center;
  display: block;
}

/* ── RESPONSIVE UPDATES ── */
@media (max-width: 768px) {
  .emt-image-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .emt-strip-img img,
  .emt-strip-img-featured img {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .emt-image-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}

/* ── PRICING LIST ── */
.emt-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}
.emt-price-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  padding-left: 1.4rem;
  position: relative;
}
.emt-price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.featured .emt-price-list li::before {
  background: var(--red);
}

/* Navy button variant */
.emt-btn-navy {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: white !important;
}
.emt-btn-navy:hover {
  background: #001a5e !important;
}
