/* ============================================================
   SR7 TRANSPORT — MAIN STYLESHEET
   Dark. Premium. Professional.
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- VARIABLES ---- */
:root {
  --red: #cc0000;
  --red-dark: #a30000;
  --red-light: #e31313;
  --black: #000000;
  --bg: #0d0d0d;
  --bg-card: #161616;
  --bg-section: #111111;
  --bg-alt: #0a0a0a;
  --border: #222222;
  --border-red: #cc000033;
  --white: #ffffff;
  --grey: #888888;
  --grey-light: #cccccc;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 72px;
  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--grey-light); }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--bg-alt); }
.section-card { background: var(--bg-section); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--grey); font-size: 1.05rem; max-width: 600px; margin-bottom: 2.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  /* Safety: bare .btn always shows white text — variant classes override */
  color: var(--white);
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-red-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-red-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- HEADER ---- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0;
}
.site-logo .sr { color: var(--white); }
.site-logo .seven { color: var(--red); }
.site-logo .transport-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--grey);
  display: block;
  line-height: 1;
}
.logo-block { display: flex; flex-direction: column; }

/* Main Nav */
#main-nav { display: flex; align-items: center; gap: 0; }
#main-nav > ul { display: flex; align-items: center; gap: 0; }
#main-nav > ul > li { position: relative; }
#main-nav > ul > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
}
#main-nav > ul > li > a:hover,
#main-nav > ul > li.current-menu-item > a { color: var(--white); }

/* Dropdown */
.has-dropdown > a::after {
  content: '▾';
  margin-left: 0.3rem;
  font-size: 0.7rem;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #161616;
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-light);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: var(--white); background: #1e1e1e; padding-left: 1.6rem; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.header-phone:hover { border-color: var(--red); color: var(--red); }
.header-phone svg { color: var(--red); }

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
#hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#hamburger.active span:nth-child(2) { opacity: 0; }
#hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-alt);
  border-top: 2px solid var(--red);
  overflow-y: auto;
  z-index: 999;
  padding: 1.5rem;
}
#mobile-nav.open { display: block; }
#mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
#mobile-nav li a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
#mobile-nav li a:hover { color: var(--red); }
#mobile-nav .mobile-sub { padding-left: 1rem; }
#mobile-nav .mobile-sub a { font-size: 1rem; color: var(--grey); }
#mobile-nav .mobile-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* Page offset for fixed header */
.page-content { padding-top: var(--header-h); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.62);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 58%,
    rgba(0,0,0,0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5);
}
.hero-content p,
.hero-content .hero-sub {
  text-shadow: 0 1px 12px rgba(0,0,0,0.65);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--grey-light);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.trust-pill::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg) translateY(-2px);
  flex-shrink: 0;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--red); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter var(--transition);
}
.service-card:hover .service-card-img { filter: brightness(1); }
.service-card-body { padding: 1.4rem; }
.service-card-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.9rem; color: var(--grey); margin-bottom: 1rem; }
.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.7rem; color: var(--red-light); }

/* ---- HOW IT WORKS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--grey); }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 1.8rem;
  border-radius: var(--radius);
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--grey-light);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-card blockquote::before { content: '"'; color: var(--red); font-size: 1.5rem; }
.testimonial-author { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.testimonial-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 0.5rem; }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--red);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.2rem;
  color: var(--grey-light);
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--red); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 100px 0 70px;
  background: var(--bg-alt);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 70%, rgba(0,0,0,0.08) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.75), 0 1px 6px rgba(0,0,0,0.5);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: var(--red); }
.page-hero .breadcrumb a:hover { color: var(--red-light); }

/* ---- QUOTE FORM / CONTACT FORM ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
}
.form-control option { background: var(--bg-card); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.3rem;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  grid-column: 1 / -1;
}
.consent-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  margin-top: 2px;
}
.consent-row label {
  font-size: 0.85rem;
  color: var(--grey);
}

/* Quote Estimate Box */
.estimate-box {
  display: none;
  background: var(--bg-alt);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}
.estimate-box.show { display: block; }
.estimate-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}
.estimate-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.estimate-disclaimer {
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
}

/* Form success */
.form-success {
  display: none;
  background: #0a2e0a;
  border: 1px solid #1a5c1a;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: #4caf50;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #2e0a0a;
  border: 1px solid #5c1a1a;
  border-radius: var(--radius);
  padding: 1rem;
  color: #f44336;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-error.show { display: block; }

/* Quote card wrapper */
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote-sidebar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.quote-sidebar h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.sidebar-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-icon { color: var(--red); flex-shrink: 0; font-size: 1.1rem; margin-top: 2px; }
.sidebar-item p { font-size: 0.85rem; margin: 0; }
.sidebar-item strong { display: block; font-family: var(--font-heading); font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); margin-bottom: 0.1rem; }

/* ---- AREAS PAGE ---- */
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.area-card:hover { border-color: var(--red); }
.area-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--white); }
.area-card p { font-size: 0.85rem; color: var(--grey); margin: 0; }
.area-card .area-icon { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--red); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--red); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ---- FEATURES / USP ---- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-row.reverse { }
.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.feature-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter var(--transition);
}
.feature-img:hover img { filter: brightness(1); }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--grey-light);
}
.feature-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg) translateY(-3px);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ---- FOOTER ---- */
#site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-brand h2 span { color: var(--red); }
.footer-brand p { font-size: 0.9rem; color: var(--grey); margin: 0.75rem 0 1.2rem; max-width: 300px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--grey-light);
  margin-bottom: 0.4rem;
}
.footer-contact-item a { color: var(--grey-light); }
.footer-contact-item a:hover { color: var(--red); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey); margin: 0; }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.8rem; color: var(--grey); }
.footer-legal-links a:hover { color: var(--red); }
.footer-cta { padding: 40px 0; border-bottom: 1px solid var(--border); text-align: center; }
.footer-cta h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.footer-cta p { margin-bottom: 1.5rem; }

/* ---- LEGAL PAGES ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 1.5rem;
}
.legal-content h1 { margin-bottom: 0.5rem; }
.legal-date { font-size: 0.85rem; color: var(--grey); margin-bottom: 2.5rem; }
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
  color: var(--red);
}
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-content p { font-size: 0.95rem; color: var(--grey-light); }
.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { font-size: 0.95rem; color: var(--grey-light); margin-bottom: 0.3rem; }
.legal-disclaimer {
  background: #1a1000;
  border: 1px solid #4a3000;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 2rem 0;
  font-size: 0.85rem;
  color: #f5a623;
}

/* ---- RED LINE DECORATION ---- */
.red-line { width: 60px; height: 3px; background: var(--red); margin-bottom: 1.5rem; }

/* ---- IMAGE SECTION ---- */
.img-section {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 55px 0; }
  #main-nav, .header-phone { display: none; }
  #hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 75vh; }
  .feature-img img { height: 250px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-trust { gap: 0.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- SVG ICONS ---- */
svg { display:inline-block; vertical-align:middle; flex-shrink:0; }
.icon-star { color:#cc0000; }
.sidebar-icon { color:var(--red); margin-top:2px; }
.header-phone svg { color:var(--red); }
.service-card-link svg { transition:transform var(--transition); }
.service-card-link:hover svg { transform:translateX(4px); }
.testimonial-stars { display:flex; gap:2px; margin-bottom:0.75rem; }
.feature-list li svg { color:var(--red); flex-shrink:0; margin-top:2px; }

/* ---- RESPONSIVE HERO BACKGROUNDS ---- */
.hero-bg,
.page-hero-bg {
  background-position: center center;
  background-size: cover;
}

/* Tablet hero backgrounds */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-bg[data-tablet],
  .page-hero-bg[data-tablet] {
    background-image: var(--hero-tablet) !important;
  }
}

/* Mobile hero backgrounds */
@media (max-width: 768px) {
  .hero-bg[data-mobile],
  .page-hero-bg[data-mobile] {
    background-image: var(--hero-mobile) !important;
    background-position: center top;
  }
  /* ── Homepage hero overlay — lightened for mobile ── */
  .hero-overlay {
    background: linear-gradient(
      160deg,
      rgba(0,0,0,0.52) 0%,
      rgba(0,0,0,0.32) 60%,
      rgba(0,0,0,0.15) 100%
    ) !important;
  }
  /* ── Service / area / about page hero overlay — lightened for mobile ──
     Was rgba(0,0,0,0.78) which stacked on brightness(0.5) to give ~11%
     effective brightness — essentially solid black on mobile. */
  .page-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.22) 100%
    ) !important;
  }
  .page-hero {
    padding: 90px 0 55px;
  }
  .hero-content,
  .page-hero-content {
    text-shadow: 0 2px 20px rgba(0,0,0,0.85), 0 1px 8px rgba(0,0,0,0.6);
  }
  /* ── Background image brightness — mobile only ──────────────────────
     Homepage .hero-bg desktop: brightness(0.62)  → mobile: 0.80
     Service .page-hero-bg desktop: brightness(0.5) → mobile: 0.78
     Both are set here so desktop values are never touched. */
  .hero-bg {
    filter: brightness(0.80);
  }
  .page-hero-bg {
    filter: brightness(0.78);
  }
}

/* ---- HERO TEXT CONTRAST BAND ---- */
/* Subtle gradient BEHIND the text block only, not the whole hero */
.hero-text-band {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.22) 45%,
    transparent 70%
  );
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-text-band {
    /* Reduced from 0.60/0.40/0.15 — already lightened overlay above,
       so text-band only needs a gentle base to keep text readable. */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.20) 70%,
      rgba(0,0,0,0.05) 100%
    );
  }
}
