/* ─────────────────────────────────────────
   TESTIMONIALS + CTA + FOOTER
   IronHaul Landing Page
───────────────────────────────────────── */

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 3rem;
  background: var(--steel);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-header .section-eyebrow {
  justify-content: center;
}

.testimonials-header .section-eyebrow::before {
  display: none;
}

.testimonials-header .section-title {
  margin: 0.5rem auto;
}

.testimonials-header .section-subtitle {
  margin: 0.8rem auto 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: rgba(255,255,255,0.04);
}

.testi-card {
  background: var(--black);
  padding: 2.4rem 2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.testi-card:hover { background: #0e0f10; }

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(232,160,32,0.07);
  pointer-events: none;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.testi-quote {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(240,237,232,0.65);
  margin-bottom: 1.8rem;
  font-style: italic;
}

.testi-divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  margin-bottom: 1rem;
}

.testi-name {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}

.testi-role {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.testi-truck {
  margin-top: 1.6rem;
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: grayscale(50%);
  transition: opacity 0.35s, filter 0.35s;
  display: block;
}

.testi-card:hover .testi-truck {
  opacity: 0.75;
  filter: grayscale(0%);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 9rem 3rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232,160,32,0.04) 0%, transparent 50%),
    linear-gradient(-135deg, rgba(196,92,26,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,160,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.cta-title span { color: var(--accent); }

.cta-sub {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #000;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp:hover {
  background: #20bc5a;
  transform: translateY(-2px);
}

.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-contact-item:hover { color: var(--white); }
.cta-contact-item svg   { color: var(--accent); flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.footer-logo-text span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(138,133,128,0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 6rem 1.5rem; }
}

@media (max-width: 768px) {
  .testimonials   { padding: 4rem 1.5rem; }
  footer          { padding: 2rem 1.5rem; }
  .footer-inner   { flex-direction: column; align-items: flex-start; }
  .cta-contact-row { gap: 1.2rem; }
  .footer-links   { gap: 1.2rem; }
}