/* DAV EXPERT SERVICES - PROFESSIONAL BRAND DESIGN */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Brand Colors: Red #B22222, Navy #1E293B, Gray #6B7280 */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif !important;
  color: #374151 !important;
  background: #fff !important;
}

/* Hide theme header/footer */
header, .site-header, footer, .site-footer, #colophon {
  display: none !important;
}

#content, main, .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1E293B 0%, #0f172a 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 em {
  color: #B22222;
  font-style: normal;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-decoration: none;
  margin: 5px;
}

.btn-red {
  background: #B22222;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

/* TRUST BAR */
.trust-bar {
  background: #B22222;
  color: #fff;
  padding: 15px;
  text-align: center;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-weight: 600;
}

/* SERVICES */
.sec { padding: 60px 20px; }
.bg-light { background: #F8FAFC; }

.sec-header {
  text-align: center;
  margin-bottom: 40px;
}

.label {
  color: #B22222;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: #1E293B;
  margin-bottom: 10px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.svc-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #E5E7EB;
}

.svc-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.svc-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: #B22222;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.svc-body {
  padding: 25px;
  text-align: center;
}

.svc-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #1E293B;
  margin-bottom: 10px;
}

.svc-body p {
  color: #6B7280;
  margin-bottom: 15px;
}

.svc-link {
  color: #B22222;
  font-weight: 700;
  text-decoration: none;
}

/* CTA BAND */
.cta-band {
  background: #1E293B;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 15px;
}

.cta-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #B22222;
  display: block;
  margin: 20px 0;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background: #1E293B;
  color: rgba(255,255,255,0.7);
  padding: 40px 20px;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* FLOAT CTA */
.float-cta {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fcta-btn {
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.fcta-navy { background: #1E293B; }
.fcta-red { background: #B22222; }