/* Self-hosted fonts - no CDN dependency */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
       url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
       url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
       url('../fonts/BebasNeue-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #111111;
  --red: #cc0000;
  --silver: #c0c0c0;
  --white: #ffffff;
  --orange: #ff6600;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: var(--black);
  background: #f8f9fa;
  padding-top: 76px;
}

a {
  color: var(--red);
}

a:hover {
  color: var(--orange);
}

.brand-title,
h1,
h2,
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.display-title {
  font-family: 'Bebas Neue', 'Arial Narrow', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}

.navbar {
  background: rgba(17, 17, 17, 0.96);
  transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.navbar .nav-link {
  color: var(--white);
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--orange);
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.top-call-btn {
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(204, 0, 0, 0.3), transparent 42%),
    linear-gradient(120deg, #0f1115 0%, #1c1c1c 100%);
  padding: 5rem 0 4rem;
}

.hero .lead {
  color: #ececec;
}

.hero-cta-card,
.form-card,
.content-card,
.review-card,
.service-card,
.city-card,
.feature-card,
.badge-card,
.faq-card {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(16, 16, 16, 0.08);
}

.hero-cta-card {
  color: var(--black);
}

.btn-brand {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  min-height: 44px;
  font-weight: 600;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #a40000;
  border-color: #a40000;
  color: var(--white);
}

.btn-accent {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  min-height: 44px;
  font-weight: 600;
}

.btn-accent:hover,
.btn-accent:focus {
  background: #dc5400;
  border-color: #dc5400;
  color: var(--white);
}

.emergency-bar {
  background: linear-gradient(90deg, #9f0000, var(--red));
  color: var(--white);
}

.section-title {
  position: relative;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  background: var(--orange);
  margin-top: 0.5rem;
  border-radius: 50px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.12);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.review-stars {
  color: #ffb400;
  letter-spacing: 1px;
}

.map-embed {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 14px;
}

.footer {
  background: #0f0f0f;
  color: #e9e9e9;
}

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

.footer a:hover {
  color: var(--orange);
}

.sticky-call-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: linear-gradient(90deg, var(--red), var(--orange));
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1.15rem;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.sticky-call-btn:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.form-control,
.form-select {
  min-height: 44px;
}

.location-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.location-input-wrapper .form-control {
  padding-right: 50px;
}

.btn-locate {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: transform 0.2s;
}

.btn-locate:hover {
  transform: scale(1.2);
}

.response-message {
  display: none;
}

.response-message.show {
  display: block;
}

.city-list {
  columns: 1;
}

.area-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.area-card:hover {
  background: rgba(204, 0, 0, 0.15);
  border-color: #cc0000;
  transform: translateY(-3px);
}

.area-card .fas {
  transition: transform 0.3s ease;
}

.area-card:hover .fas {
  transform: scale(1.2);
}

@media (min-width: 576px) {
  .city-list {
    columns: 2;
  }
}

@media (min-width: 992px) {
  .city-list {
    columns: 3;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.client-logo-card {
  background: #1a1a1a;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.client-logo-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0);
}

.client-logo-card h3,
.client-fallback {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #f0f0f0;
}

.client-link {
  text-decoration: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dynamic-testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-photo,
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
}

@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
