/* ===== Abanto Home page rebuild — matches approved v6 mockup ===== */

/* Buttons */
.btn-pill {
  display: inline-block;
  background: #00478F;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
.btn-pill:hover {
  background: #003569;
  color: #ffffff !important;
}

/* Hero */
.home-hero-row {
  background: #f2f6fb;
  padding: 56px 0;
}
.home-hero-row .wpb_column {
  display: flex;
  align-items: center;
}
.home-hero-copy { max-width: 560px; }
.hero-headline {
  font-size: 32px;
  line-height: 1.35;
  font-weight: 400;
  color: #00478F;
  text-transform: none;
  margin: 0 0 20px;
}
.hero-headline strong { font-weight: 700; }
.hero-subcallout {
  font-size: 16px;
  line-height: 1.6;
  color: #5f5e5a;
  text-transform: none;
  margin: 0 0 24px;
  max-width: 480px;
}
.home-hero-photo {
  width: 100%;
  min-height: 260px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #dbe6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f7f9e;
  font-size: 13px;
}

/* Intro */
.home-intro-row { background: #ffffff; padding: 8px 0 48px; }
.home-intro {
  font-size: 17px;
  line-height: 1.75;
  color: #3d4650;
  text-transform: none;
  max-width: 760px;
  margin: 0 auto;
}

/* Services */
.home-services-row { background: #ffffff; padding: 8px 0 48px; }
.home-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00478F;
  margin-bottom: 18px;
}
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-tile {
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  padding: 20px 16px;
  min-height: 110px;
}
.service-tile i {
  font-size: 22px;
  color: #00478F;
  display: block;
  margin-bottom: 10px;
}
.service-tile span {
  font-size: 14px;
  line-height: 1.4;
  color: #042c53;
  display: block;
}
.service-tile-more {
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-tile-more a {
  font-size: 14px;
  color: #00478F;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 900px) {
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Pull quote */
.home-quote-row {
  background: #ffffff;
  border-top: 1px solid #e7ebf0;
  border-bottom: 1px solid #e7ebf0;
  padding: 40px 0;
}
.home-pullquote {
  font-size: 19px;
  font-style: italic;
  text-align: center;
  color: #042c53;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

/* Closing CTA */
.home-closing-row { background: #ffffff; padding: 56px 0; }
.home-closing-cta { text-align: center; }
.home-closing-cta h3 {
  font-size: 24px;
  color: #042c53;
  font-weight: 600;
  text-transform: none;
  margin: 0 0 20px;
}

/* Responsive: stack hero on mobile */
@media (max-width: 767px) {
  .home-hero-row .vc_column-inner { padding-bottom: 24px; }
  .home-hero-photo { min-height: 180px; }
}