:root {
  --primary: #8c1111;
  --primary-dark: #5d0c0c;
  --secondary: #e85c5c;
  --cta: #d93f3f;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

.text-primary {
  color: var(--primary) !important;
}

header {
  background: #fff;
  z-index: 1030;
}

.brand-text {
  color: var(--primary);
  letter-spacing: 0.2px;
}

.brand-logo {
  width: 200px;
  height: auto;
  max-height: 60px;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 11, 11, 0.82), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.hero-content h1 {
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-content h2 {
  font-weight: 400;
}

.trust-icon {
  font-size: 2rem;
  color: var(--primary);
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.4rem;
  color: var(--primary);
}

.service-img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.contact-section {
  background: var(--primary-dark);
  color: #fff;
}

.contact-section h3,
.contact-section p,
.contact-section .form-label {
  color: #fff;
}

.contact-section .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.85rem 1rem;
}

.contact-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-section .form-control:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.btn-contact {
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  padding: 0.95rem 1rem;
}

.btn-contact:hover {
  background: #b83232;
}

.footer {
  background: #0c0c0c;
  color: #c5c5c5;
}

@media (max-width: 576px) {
  header {
    padding-inline: 0.75rem !important;
    padding-block: 1.25rem;
  }

  header .d-flex {
    justify-content: center !important;
  }

  .brand-logo {
    max-height: 80px;
    width: 220px;
  }
}
