@charset "utf-8";

/* =========================
   Base / Reset
   ========================= */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body{
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #080204;
  background: #ffffff;
  line-height: 1.6;
}

img{ max-width: 100%; height: auto; display: block; }

a{
  color: #1f135c;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
a:hover, a:focus{
  color: #d04940;
  text-decoration: none;
}

/* Utility text (if you use these on header/phone) */
.bluetext{ color: #1f135c; font-size: 18px; }
.redtext{ color: #d04940; font-size: 22px; font-weight: 700; }
.redtextmed{ color: #d04940; font-size: 18px; }

/* =========================
   Containers
   ========================= */
.container-wide{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* =========================
   Header / Navbar (Bootstrap-friendly)
   ========================= */
header.main__header{ background: #fff; }

header.main__header .navbar{
  margin-bottom: 0;
  border: none;
}

header.main__header .navbar-default{
  background: #ffffff;
  border: none;
}

header.main__header .navbar-brand{
  padding: 8px 15px;
  height: auto;
}

header.main__header .navbar-nav > li > a{
  color: #222 !important;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent !important;
  padding: 10px 12px;
}

header.main__header .navbar-nav > li > a:hover,
header.main__header .navbar-nav > li > a:focus{
  color: #080204 !important;
  background: transparent !important;
}

header.main__header .navbar-nav > .active > a,
header.main__header .navbar-nav > .active > a:hover,
header.main__header .navbar-nav > .active > a:focus{
  color: #080204 !important;
  background: transparent !important;
  text-decoration: underline;
}

/* Make sure the collapsed menu looks fine */
@media (max-width: 767px){
  header.main__header .navbar-nav{ margin: 10px 0; }
}

/* =========================
   SERVICES HERO (matches services_old look)
   ========================= */
.services-hero{
  padding: 48px 0 55px;
  background: radial-gradient(circle at 60% 30%, #555 0%, #2d2d2d 45%, #1f1f1f 100%);
  color: #fff;
}

.services-hero-grid{
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* LEFT */
.services-hero-left{
  flex: 1;
  min-width: 0;
}

.services-eyebrow{
  letter-spacing: .18em;
  font-size: 12px;
  opacity: .9;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.services-hero-left h1{
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.02;
  font-weight: 800;
  color: #ffffff;
}

.services-hero-left p{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  color: rgba(255,255,255,0.92);
}

.services-proof{
  margin: 16px 0 18px;
  font-size: 16px;
  color: rgba(255,255,255,0.92);
}

/* CTA pills */
.services-hero-ctas{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}

.btn-pill{
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.btn-pill-white{
  background: #fff;
  color: #111 !important;
  border: 1px solid #fff;
}

.btn-pill-outline{
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-pill:hover{ transform: translateY(-1px); }

.services-note{
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  margin-top: 6px;
}

/* RIGHT CARD */
.services-help-card{
  flex: 0 0 520px;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  margin-top: 82px;
}

.services-help-card h2{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #111;
}

.services-checklist{
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-checklist li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

.services-checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 1100px){
  .services-help-card{ flex-basis: 460px; }
  .services-hero-left h1{ font-size: 54px; }
}

@media (max-width: 900px){
  .services-hero-grid{ flex-direction: column; }
  .services-help-card{
    width: 100%;
    margin-top: 20px;
    flex-basis: auto;
  }
  .services-hero-left h1{ font-size: 44px; }
}

/* =========================
   GALLERY HERO (black background)
   ========================= */
.gallery-hero{
  background: #000;
  color: #fff;
  padding: 40px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gallery-hero h1{
  color: #fff;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 700;
}

.gallery-hero p{
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0;
}

/* =========================
   GALLERY GRID
   ========================= */
.gallery-section{
  padding-top: 48px;
  padding-bottom: 50px;
}

.gallery-grid{
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item{
  margin: 0;                 /* remove default figure margin */
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img{
  width: 100%;
  height: 240px;             /* uniform tile height */
  object-fit: cover;
  display: block;
}

.gallery-item figcaption{
  padding: 10px 12px;
  font-size: 15px;
  color: #fff;
  background: #000;
  text-align: center;
}

@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item img{ height: 210px; }
}

/* =========================
   Bottom CTA – black + centered
   ========================= */

.bottom-cta{
  background: #000;
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.bottom-cta h2{
  color: #fff;
  margin-bottom: 12px;
}

.bottom-cta p{
  color: #f1f1f1;
  max-width: 800px;
  margin: 0 auto 18px;
}

.bottom-cta-actions{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.bottom-cta a{
  color: #fff;
}

.bottom-cta small{
  display: block;
  color: #ccc;
}

/* Key Services: prevent any card from forcing wrap */
.service-card { min-width: 0; width: 100%; }
.service-card img { max-width: 100%; height: auto; display: block; }

/* --- Fix Key Services grid if Bootstrap row/cols were overridden --- */
.section-bleed .row{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.section-bleed [class*="col-"]{
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}
