/* ===== VARIABLES ===== */
:root {
  --charcoal: #2b2b2b;
  --charcoal-dark: #1e1e1e;
  --red: #e31e24;
  --red-dark: #c01a1f;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --light-gray: #e8e8e8;
  --medium-gray: #777777;
  --section-pad: 90px;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.16);
  --trans: 0.28s ease;
  --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', system-ui, -apple-system, sans-serif; color: var(--charcoal); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
section[id] { scroll-margin-top: var(--header-h); }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,30,36,0.38); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal-dark);
  height: var(--header-h);
  border-bottom: 2px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.45); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}
.logo-link { flex-shrink: 0; }
.logo { height: 62px; width: auto; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.09); }
.header-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== SECTION DEFAULTS ===== */
.section { padding: var(--section-pad) 0; }
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.section-header.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.62); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--charcoal);
  text-transform: uppercase;
}
.section-header p { color: var(--medium-gray); font-size: 1.02rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Red diagonal sweep on right */
.hero-deco {
  position: absolute;
  top: 0; right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(145deg, transparent 40%, rgba(227,30,36,0.06) 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,30,36,0.12);
  border: 1px solid rgba(227,30,36,0.35);
  color: #ff7070;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-content h1 .red { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 44px;
  max-width: 540px;
  line-height: 1.72;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.trust-item i { color: var(--red); font-size: 0.9rem; }

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans), border-top-color var(--trans);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,30,36,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-top-color: var(--red); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 54px; height: 54px;
  background: rgba(227,30,36,0.09);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.35rem;
  color: var(--red);
  transition: background var(--trans), color var(--trans);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
  text-transform: uppercase;
}
.service-card p { color: var(--medium-gray); font-size: 0.9rem; line-height: 1.68; }

/* ===== WHY US ===== */
.why-us {
  background: var(--charcoal);
  background-image: linear-gradient(135deg, var(--charcoal-dark) 0%, #333333 100%);
}
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 24px 32px;
  position: relative;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.usp-card:hover { background: rgba(255,255,255,0.07); border-color: var(--red); transform: translateY(-4px); }
.usp-number {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(227,30,36,0.13);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}
.usp-icon { font-size: 1.5rem; color: var(--red); margin-bottom: 16px; display: block; }
.usp-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.usp-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }

/* ===== PROCESS ===== */
.process { background: var(--white); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 52px;
}
.step { flex: 1; text-align: center; }
.step-num {
  width: 76px; height: 76px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 22px rgba(227,30,36,0.38);
  position: relative;
  z-index: 1;
}
.step-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.step-body p { color: var(--medium-gray); font-size: 0.9rem; max-width: 230px; margin: 0 auto; line-height: 1.65; }
.step-arrow {
  padding-top: 28px;
  color: var(--light-gray);
  font-size: 1.3rem;
  flex-shrink: 0;
  padding-left: 4px;
  padding-right: 4px;
}
.process-cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--charcoal-dark);
  background-image: linear-gradient(180deg, #1a1a1a 0%, #222222 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--trans), transform var(--trans), background var(--trans);
}
.testimonial-card:hover { border-color: var(--red); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.stars { color: var(--red); font-size: 0.88rem; margin-bottom: 18px; display: flex; gap: 3px; }
.testimonial-card > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.reviewer { color: rgba(255,255,255,0.42); font-size: 0.83rem; }
.reviewer strong { color: rgba(255,255,255,0.78); display: block; margin-bottom: 2px; }

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item p { color: var(--medium-gray); font-size: 0.94rem; line-height: 1.65; }
.contact-item a { color: var(--red); font-weight: 700; font-size: 1.15rem; transition: opacity var(--trans); }
.contact-item a:hover { opacity: 0.8; }
.contact-btn { margin-top: 8px; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  border: 1px solid var(--light-gray);
}
.map-container iframe { display: block; width: 100%; height: 100%; min-height: 420px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal-dark);
  border-top: 3px solid var(--red);
  padding: 40px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo img { height: 57px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--red); }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--trans);
}
.footer-contact a:hover { color: var(--red); }
.footer-copy {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.28);
  font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1020px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --section-pad: 70px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-logo { margin: 0 auto; }
  .footer-links { justify-content: center; }
  .footer-contact { margin: 0 auto; }
}

@media (max-width: 768px) {
  .header-cta { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(20,20,20,0.98);
    backdrop-filter: blur(12px);
    padding: 12px 0 16px;
    border-bottom: 2px solid var(--red);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 28px; font-size: 0.95rem; border-radius: 0; }
  .main-nav a:hover { background: rgba(227,30,36,0.12); }
  .hamburger { display: flex; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: center; gap: 36px; }
  .step-arrow { display: none; }
  .step { max-width: 280px; }
}

@media (max-width: 520px) {
  :root { --section-pad: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 14px; }
}
