*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #CC1C1C;
  --red-light: #E52222;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --gray: #2A2A2A;
  --muted: #888;
  --white: #FFFFFF;
  --off-white: #F0EFED;
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-light) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 36px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid #555;
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 16px 36px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-white:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── SECTION BASE ── */
section { padding: 100px 40px; }

.section-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

h2 em { font-style: normal; color: var(--red); }

/* ── HERO (index) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(204,28,28,0.12) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%),
    url('../Images/image000001.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 em { font-style: normal; color: var(--red); }

.hero p {
  font-size: 18px;
  color: #ccc;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 1;
  display: flex;
  gap: 48px;
}

.stat { text-align: right; }

.stat-number {
  font-family: var(--display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}

.stat-number span { color: var(--red); }

.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── SERVICE PAGE HERO ── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 140px 40px 60px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 100%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 780px; }

.page-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.page-hero h1 em { font-style: normal; color: var(--red); }

.page-hero p {
  font-size: 18px;
  color: #ccc;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── SERVICES GRID ── */
#services { background: var(--dark); }

.services-header { max-width: 600px; margin-bottom: 60px; }
.services-header p { color: #aaa; font-size: 17px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s, transform 0.4s;
}

.service-card:hover .service-card-img { filter: brightness(1); transform: scale(1.03); }

.service-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.3s ease;
}

.service-card:hover { background: #1f1f1f; }
.service-card:hover::after { width: 100%; }

.service-icon { font-size: 28px; margin-bottom: 14px; display: block; }

.service-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.service-card p { color: #888; font-size: 14px; line-height: 1.6; flex: 1; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  transition: gap 0.2s;
}

.service-card-link:hover { gap: 10px; }

/* ── SERVICE DETAIL ── */
.service-detail { background: var(--dark); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.service-detail-body p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.service-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-check {
  width: 20px;
  height: 20px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 11px;
  color: white;
}

.service-benefit-text { color: #ccc; font-size: 15px; line-height: 1.5; }

.service-detail-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* ── STORM BAND ── */
.storm-band {
  background: var(--red);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.storm-band h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 8px;
}

.storm-band p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 500px; }

/* ── WHY US ── */
#why { background: var(--black); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.why-list { display: flex; flex-direction: column; gap: 32px; }

.why-item { display: flex; gap: 20px; align-items: flex-start; }

.why-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.1em;
  padding-top: 3px;
  min-width: 28px;
}

.why-item h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.why-item p { color: #888; font-size: 14px; line-height: 1.65; }

.why-image { position: relative; }

.why-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.why-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--red);
  z-index: -1;
}

/* ── PROCESS ── */
#process { background: var(--dark); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.process-step { background: var(--dark2); padding: 40px 32px; position: relative; }

.process-step-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: #1e1e1e;
  margin-bottom: 16px;
  display: block;
}

.process-step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--white);
}

.process-step p { color: #777; font-size: 14px; line-height: 1.65; }

/* ── CONTACT ── */
#contact { background: var(--dark2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-info h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--off-white);
}

.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { font-size: 20px; margin-top: 2px; }

.contact-detail-text strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-detail-text a,
.contact-detail-text span { color: var(--white); text-decoration: none; font-size: 16px; }

.contact-detail-text a:hover { color: var(--red); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #2a2a2a;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #181818;
  border: 1px solid #2e2e2e;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--off-white);
}

.trust-badge-icon { font-size: 16px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #555; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); }

.contact-form select option { background: #111; }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.contact-form button:hover { background: var(--red-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #050505;
  padding: 60px 40px 30px;
  border-top: 1px solid #1a1a1a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand img { height: 56px; margin-bottom: 16px; display: block; }

.footer-brand p { color: #666; font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a { color: #555; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: #444; font-size: 13px; }
.footer-bottom span { color: var(--red); }

/* ── SERVICE AREA STRIP ── */
.area-strip {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  white-space: nowrap;
}

.area-strip-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
}

.area-strip-cities { display: flex; gap: 20px; flex-wrap: nowrap; }

.area-strip-cities span { font-size: 13px; color: #555; letter-spacing: 0.05em; }

.area-strip-cities a { color: inherit; text-decoration: none; transition: color 0.2s; }
.area-strip-cities a:hover { color: var(--red); }

.area-strip-cities span::after { content: '·'; margin-left: 20px; color: #333; }
.area-strip-cities span:last-child::after { display: none; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--dark2);
  padding: 12px 40px;
  margin-top: 70px;
  border-bottom: 1px solid #222;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #555;
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 8px; color: #333; }
.breadcrumb .current { color: var(--red); }

/* ── RELATED SERVICES ── */
.related-services { background: var(--black); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 70px 20px; }

  .hero { padding: 100px 20px 60px; }
  .hero-stats { position: static; margin-top: 48px; justify-content: flex-start; gap: 32px; }
  .stat { text-align: left; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .storm-band { flex-direction: column; align-items: flex-start; padding: 40px 20px; }
  .area-strip { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }

  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  .page-hero { padding: 120px 20px 50px; }
  .breadcrumb { padding: 12px 20px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE NAV OPEN STATE ── */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  padding: 24px 20px;
  gap: 20px;
  border-bottom: 1px solid #222;
  z-index: 99;
}
