/* ==========================================================================
   Men of Honor Trash Valet Services, LLC
   Stylesheet — rebuilt from the live WordPress/Elementor site
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&family=Heebo:wght@300;400;500;600;700&display=swap');

:root{
  --blue: #4a97de;
  --blue-dark: #3a7fc0;
  --blue-deep: #0058e6;
  --green: #2fdb70;
  --green-dark: #22b85c;
  --dark: #232323;
  --slate: #23282d;
  --gray-bg: #f7f7f7;
  --border: #eaeaeb;
  --white: #ffffff;
  --muted: #6b6f72;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(20,20,20,.08);
  --container: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: 'Heebo', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--dark);
}
p{ margin: 0 0 16px; color: var(--muted); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover{ background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline{
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover{ border-color: var(--blue); color: var(--blue); }
.btn-green{ background: var(--green); color: var(--white); }
.btn-green:hover{ background: var(--green-dark); transform: translateY(-2px); }

/* ==========================================================================
   Header
   ========================================================================== */
.top-bar{
  background: var(--dark);
  color: #cfd2d4;
  font-size: 13px;
}
.top-bar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a{ color: #cfd2d4; }
.top-bar .top-bar-links{ display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar .top-bar-links span, .top-bar .top-bar-links a{ display: inline-flex; align-items: center; gap: 6px; }

.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img{ height: 54px; width: auto; }

.main-nav ul{
  display: flex;
  gap: 36px;
}
.main-nav a{
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--dark);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after{ transform: scaleX(1); }
.main-nav a.active{ color: var(--blue); }

.header-cta{ display: flex; align-items: center; gap: 22px; }
.header-phone{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--dark);
}
.header-phone .icon-circle{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-toggle{
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 26px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle span{
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--dark);
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header{
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.page-header h1{
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
}
.page-header .crumbs{
  color: rgba(255,255,255,.85);
  font-size: 14px;
  letter-spacing: .04em;
}
.page-header .crumbs a{ color: #fff; font-weight: 600; }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-slides{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.is-active{ opacity: 1; transform: scale(1); }
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,15,.55) 0%, rgba(10,12,15,.72) 100%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 0;
}
.hero-content .eyebrow{ color: #8fc4f4; }
.hero-content h1{
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 20px;
}
.hero-content h1 em{
  font-style: normal;
  color: var(--green);
}
.hero-content p{
  color: rgba(255,255,255,.88);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions{ display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.play-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
}
.play-btn .circle{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(47,219,112,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(47,219,112,.55); }
  70%{ box-shadow: 0 0 0 16px rgba(47,219,112,0); }
  100%{ box-shadow: 0 0 0 0 rgba(47,219,112,0); }
}

/* ==========================================================================
   Sections — generic
   ========================================================================== */
section{ padding: 90px 0; }
.section-gray{ background: var(--gray-bg); }
.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(26px, 3.4vw, 36px); }

/* Help / features */
.help-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.help-list{ display: grid; gap: 14px; margin-top: 28px; }
.help-list li{
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.help-list .tick{
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.help-cta-card{
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.help-cta-card h3{ color: #fff; font-size: 20px; margin-bottom: 8px; }
.help-cta-card p{ color: #b9bcbe; font-size: 14px; }
.help-cta-card .phone{
  display: block;
  color: var(--green);
  font-size: 26px;
  font-weight: 700;
  margin: 14px 0 4px;
  letter-spacing: .02em;
}

/* About */
.about-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.about-media{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-media img{
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-media .col-offset{ margin-top: 40px; }
.badge-experience{
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.badge-experience strong{ display: block; font-family:'Rubik',sans-serif; font-size: 15px; }
.badge-experience span{ font-size: 12px; letter-spacing: .06em; text-transform: uppercase; opacity: .9; }
.about-checklist{ display: grid; gap: 10px; margin: 26px 0 30px; }
.about-checklist li{ display: flex; align-items: center; gap: 12px; font-weight: 600; }
.about-checklist .tick{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(74,151,222,.12);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.about-foot{ display:flex; align-items:center; gap: 24px; margin-top: 10px; flex-wrap: wrap; }
.about-foot .crew-tag{ font-family:'Rubik',sans-serif; font-weight:600; color: var(--muted); font-size: 14px; }

/* Industries */
.industry-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.industry-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.industry-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.industry-card .num{
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: rgba(74,151,222,.25);
  margin-bottom: 10px;
}
.industry-card h3{ font-size: 19px; }
.industry-card p{ font-size: 14.5px; margin-bottom: 0; }

/* Services */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(20,20,20,.06);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .thumb{
  position: relative;
  height: 210px;
  overflow: hidden;
}
.service-card .thumb img{ width: 100%; height: 100%; object-fit: cover; }
.service-card .icon-badge{
  position: absolute;
  bottom: -26px; left: 24px;
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.service-card .body{ padding: 40px 26px 26px; }
.service-card h3{ font-size: 19px; }
.service-card p{ font-size: 14.5px; }
.service-card .read-more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}
.service-card .read-more:hover{ color: var(--blue-dark); }

/* Booking / contact form */
.booking-wrap{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-side{
  background: var(--green);
  color: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-side h2{ color: #fff; font-size: 26px; }
.booking-side p{ color: rgba(255,255,255,.92); }
.booking-side ul{ margin-top: 18px; display: grid; gap: 10px; }
.booking-side li{ display: flex; gap: 10px; align-items: center; font-weight: 600; }
.booking-form{
  background: #fff;
  padding: 50px 44px;
}
.form-row{ margin-bottom: 18px; }
.form-row label{
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-row label .req{ color: #e5484d; margin-left: 3px; }
.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--gray-bg);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--dark);
  transition: border-color .15s ease, background .15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.form-row textarea{ resize: vertical; min-height: 110px; }
.form-grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note{ font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.form-status{
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(47,219,112,.12);
  color: #1c8a4d;
  font-weight: 600;
  font-size: 14px;
}
.form-status.is-visible{ display: block; }
.honeypot{ position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Blog preview */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .date{
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h3{ font-size: 18px; }
.blog-card p{ font-size: 14px; }
.blog-card .read-more{ font-weight: 700; font-size: 13px; color: var(--blue); text-transform: uppercase; letter-spacing: .04em; }

/* Stats / progress bars (about page) */
.stat-block{ margin-bottom: 26px; }
.stat-block .stat-head{ display: flex; justify-content: space-between; font-family:'Rubik',sans-serif; font-weight: 700; margin-bottom: 8px; }
.stat-block .stat-head span:last-child{ color: var(--blue); }
.stat-track{ height: 10px; border-radius: 6px; background: var(--border); overflow: hidden; }
.stat-fill{ height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--blue), var(--green)); width: 0; transition: width 1.2s ease; }

/* Mission / vision */
.mv-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}
.mv-card .icon-circle{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(47,219,112,.14);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

/* Commitments */
.commit-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.commit-card{ display: flex; gap: 16px; }
.commit-card .icon-circle{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(74,151,222,.12);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.commit-card h4{ font-size: 16.5px; margin-bottom: 6px; }
.commit-card p{ font-size: 14.5px; margin-bottom: 0; }

/* Pillars (sales/waste mgmt/safety/service) */
.pillars-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar-card{
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.pillar-card .num{
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.pillar-card h4{ font-size: 17px; }
.pillar-card p{ font-size: 14px; margin-bottom: 0; }

/* Team */
.team-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card{ text-align: center; }
.team-card .photo{
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1/1.1;
}
.team-card .photo img{ width: 100%; height: 100%; object-fit: cover; }
.team-card h4{ font-size: 16px; margin-bottom: 2px; }
.team-card span{ font-size: 13px; color: var(--muted); }

/* Steps (services page) */
.steps-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.step-card .step-num{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h4{ font-size: 17px; }

/* Contact info strip */
.contact-strip{
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-strip .item{ display: flex; align-items: center; gap: 16px; }
.contact-strip .icon-circle{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-strip .label{ font-size: 12.5px; color: #a9adaf; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-strip .value{ font-family: 'Rubik', sans-serif; font-weight: 700; }

/* CTA banner */
.cta-banner{
  background: linear-gradient(120deg, var(--blue), var(--blue-deep));
  color: #fff;
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
}
.cta-banner h2{ color: #fff; }
.cta-banner p{ color: rgba(255,255,255,.9); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: #171a1d;
  color: #c6c9cb;
  padding: 64px 0 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo img{ height: 48px; margin-bottom: 16px; }
.footer-grid h4{ color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-links{ display: grid; gap: 10px; }
.footer-links a:hover{ color: var(--blue); }
.footer-contact{ display: grid; gap: 12px; font-size: 14.5px; }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  color: #8b8f91;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .help-grid,
  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ order: -1; margin-bottom: 30px; }
  .industry-grid,
  .services-grid,
  .blog-grid{ grid-template-columns: repeat(2, 1fr); }
  .booking-wrap{ grid-template-columns: 1fr; }
  .pillars-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-strip{ grid-template-columns: 1fr; }
  .mv-grid,
  .commit-grid,
  .steps-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  section{ padding: 60px 0; }
  .main-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: transform .25s ease;
    padding: 90px 32px 32px;
    z-index: 200;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 22px; }
  .menu-toggle{ display: flex; }
  .header-phone span:last-child{ display: none; }
  .industry-grid,
  .services-grid,
  .blog-grid{ grid-template-columns: 1fr; }
  .top-bar .container{ justify-content: center; text-align: center; }
  .nav-overlay{
    display: none;
    position: fixed; inset: 0;
    background: rgba(10,12,15,.5);
    z-index: 150;
  }
  .nav-overlay.is-open{ display: block; }
}
