/* FULL WIDTH HERO */
.adr-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.adr-hero-bg img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}

/* HERO CONTENT */
.adr-hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 520px;
}

.adr-hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.adr-hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* CTA BUTTON */
.btn-primary {
  background: #c62828;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.btn-primary:hover {
  background: #a61e1e;
}

/* TRUST STRIP */
.adr-trust-strip {
  background: #0d2a44;
  color: #fff;
  padding: 40px 20px;
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-item {
  width: 16%;
  text-align: center;
}

.trust-item h4 {
  margin-top: 10px;
}

/* CONTENT AREA */
.adr-content {
  padding: 50px 20px;
}

.adr-content .container {
  max-width: 1100px;
  margin: auto;
}

/* CTA SECTION */
.adr-cta {
  background: #f3f3f3;
  text-align: center;
  padding: 50px 20px;
}

.adr-cta h2 {
  margin-bottom: 20px;
}

.btn-primary.large {
  font-size: 18px;
  padding: 15px 30px;
}

.hero-subheadline {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ddd;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.adr-industries {
  background: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
}

.industries-title {
  font-size: 24px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.industry-card {
  display: block;
  text-decoration: none;
  color: #222;
  transition: transform 0.2s ease;
}

.industry-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

.industry-card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.industry-card:hover {
  transform: translateY(-4px);
}

.industries-footer {
  margin-top: 30px;
  font-size: 16px;
}