/* =========================================
   RoofersNJ.com - Main Stylesheet
   Colors: #CC0000 (red), #1a1a1a (dark), #fff
   ========================================= */

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

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #e60000;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #555;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #ffffff;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
  --radius: 4px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========= TOP BAR ========= */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--red); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; }

/* ========= HEADER ========= */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  z-index: 100;
  position: relative;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo img { height: 70px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-text span { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: var(--dark); line-height: 1; }
.logo-text small { font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }

/* ========= NAVIGATION ========= */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > ul { display: flex; list-style: none; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Dropdown */
.main-nav .dropdown { position: relative; }
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  list-style: none;
}
.main-nav .dropdown-menu.mega { min-width: 600px; display: none; }
.main-nav .dropdown:hover .dropdown-menu { display: block; }
.main-nav .dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  text-transform: none;
}
.main-nav .dropdown-menu li a:hover { background: var(--light-gray); color: var(--red); padding-left: 24px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-call {
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 2px solid var(--red);
  transition: var(--transition);
}
.btn-call:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-call svg { width: 18px; height: 18px; fill: var(--white); }

/* ========= HAMBURGER ========= */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 25px; height: 3px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ========= CONTAINER ========= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ========= HERO ========= */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #2c0000 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23CC0000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--red); display: block; }
.hero p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(204,0,0,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
}
.hero-stat .label { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* Hero Form Box */
.hero-form-box {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  width: 100%;
}
.hero-form-box h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero-form-box p { font-size: 13px; color: var(--gray); margin-bottom: 20px; font-weight: 400; text-transform: none; letter-spacing: 0; font-family: var(--font-body); }

/* ========= FORMS ========= */
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}
.form-group textarea { height: 90px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ========= TRUST BAR ========= */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item svg { width: 28px; height: 28px; fill: var(--red); flex-shrink: 0; }
.trust-item-text strong { display: block; font-family: var(--font-heading); font-size: 16px; font-weight: 700; letter-spacing: 0.5px; color: var(--white); }
.trust-item-text span { font-size: 12px; color: #999; }

/* ========= SECTIONS ========= */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--light-gray); }
.section-red { background: var(--red); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; font-weight: 400; text-transform: none; font-family: var(--font-body); line-height: 1.7; }
.section-header.white h2, .section-header.white .eyebrow { color: var(--white); }
.section-header.white p { color: #aaa; }
.section-header.white .eyebrow { color: #ff6666; }

/* Divider line */
.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ========= SERVICES GRID ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(204,0,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; fill: var(--red); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; margin-bottom: 20px; line-height: 1.7; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.service-card a.learn-more {
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card a.learn-more:hover { gap: 10px; }

/* ========= WHY CHOOSE US ========= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content {}
.why-content h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
.why-list { list-style: none; margin-top: 28px; }
.why-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.why-list li .icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list li .icon svg { width: 20px; height: 20px; fill: var(--white); }
.why-list li .text strong { display: block; font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: 0.3px; }
.why-list li .text span { font-size: 14px; color: var(--gray); line-height: 1.6; }

.why-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.why-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; }
.why-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 6px;
  text-align: center;
}
.why-image-badge .big { display: block; font-family: var(--font-heading); font-size: 48px; font-weight: 900; line-height: 1; }
.why-image-badge .small { font-size: 13px; letter-spacing: 1px; }

/* ========= PROCESS STEPS ========= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px;
  height: 70px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--red);
}
.process-step h3 { font-size: 20px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray); text-transform: none; font-weight: 400; font-family: var(--font-body); line-height: 1.6; }

/* ========= REVIEWS ========= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: var(--red);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f5a623; font-size: 18px; margin-bottom: 14px; }
.review-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.reviewer-info strong { display: block; font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.reviewer-info span { font-size: 12px; color: var(--gray); }

/* ========= SERVICE AREAS ========= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
  background: var(--white);
}
.area-link:hover { border-color: var(--red); color: var(--red); background: rgba(204,0,0,0.03); }
.area-link svg { width: 12px; height: 12px; fill: var(--red); flex-shrink: 0; }

/* ========= COUNTIES GRID ========= */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.county-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 20px;
  transition: var(--transition);
  border-left: 4px solid var(--red);
}
.county-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.county-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--dark); }
.county-card p { font-size: 12px; color: var(--gray); margin-bottom: 14px; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.county-card a {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========= BLOG CARDS ========= */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-thumb .blog-icon { font-size: 60px; opacity: 0.3; }
.blog-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-body { padding: 24px 22px; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: #999; margin-bottom: 12px; }
.blog-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--dark); line-height: 1.3; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.read-more {
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover { gap: 10px; }

/* ========= CTA SECTION ========= */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(36px, 5vw, 60px); color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 2px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

/* ========= FOOTER ========= */
.site-footer {
  background: #0d0d0d;
  color: #ccc;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #333;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 65px; }
.footer-about p { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #888; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 14px; color: #888; line-height: 1.5; }
.footer-contact-item a { color: #888; }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: #666; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: #666; }
.footer-bottom-links a:hover { color: var(--red); }

/* ========= POPUP FORM ========= */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.popup-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 28px 32px 24px;
  position: relative;
}
.popup-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.popup-header h3 { font-size: 26px; color: var(--white); margin-bottom: 6px; }
.popup-header p { font-size: 14px; color: #aaa; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.popup-body { padding: 28px 32px; }
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup-close:hover { background: var(--red); }
.popup-or {
  text-align: center;
  margin: 16px 0;
  position: relative;
  color: var(--gray);
  font-size: 13px;
}
.popup-or::before, .popup-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.popup-or::before { left: 0; }
.popup-or::after { right: 0; }
.popup-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.popup-call:hover { background: var(--red); color: var(--white); }
.popup-call svg { width: 20px; height: 20px; fill: var(--red); }
.popup-call:hover svg { fill: var(--white); }

/* ========= PAGE HERO (inner pages) ========= */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #2c0000 100%);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 62px); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: #bbb; max-width: 600px; margin: 0 auto 24px; text-transform: none; font-family: var(--font-body); font-weight: 400; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }

/* ========= SERVICE PAGE CONTENT ========= */
.service-content { padding: 80px 0; }
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}
.service-main h2 { font-size: 36px; margin-bottom: 16px; margin-top: 40px; }
.service-main h2:first-child { margin-top: 0; }
.service-main h3 { font-size: 26px; margin-bottom: 12px; margin-top: 32px; color: var(--red); }
.service-main p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.service-main ul { margin: 0 0 20px 20px; }
.service-main ul li { color: var(--gray); font-size: 15px; margin-bottom: 10px; line-height: 1.6; }
.service-main ul li::marker { color: var(--red); }

.service-sidebar {}
.sidebar-widget {
  background: var(--light-gray);
  border-radius: 6px;
  padding: 28px 24px;
  margin-bottom: 24px;
  border-left: 4px solid var(--red);
}
.sidebar-widget h4 { font-size: 18px; margin-bottom: 16px; color: var(--dark); }
.sidebar-cta {
  background: var(--red);
  border-radius: 6px;
  padding: 28px 24px;
  margin-bottom: 24px;
  text-align: center;
}
.sidebar-cta h4 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 20px; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.sidebar-cta .phone { font-family: var(--font-heading); font-size: 26px; font-weight: 900; color: var(--white); display: block; margin-bottom: 12px; }
.sidebar-services-list { list-style: none; }
.sidebar-services-list li { margin-bottom: 8px; }
.sidebar-services-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-services-list li a:hover { color: var(--red); padding-left: 6px; }
.sidebar-services-list li a svg { width: 10px; height: 10px; fill: var(--red); }

/* ========= FAQ ========= */
.faq-list {}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--red); background: var(--light-gray); }
.faq-question.active { color: var(--red); background: var(--light-gray); }
.faq-icon { font-size: 20px; color: var(--red); flex-shrink: 0; transition: transform 0.3s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 16px 20px 20px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  background: var(--light-gray);
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ========= CITY PAGE ========= */
.city-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #2c0000 100%);
  padding: 60px 0;
}
.city-hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: center;
}
.city-hero h1 { font-size: clamp(36px, 5vw, 58px); color: var(--white); margin-bottom: 16px; }
.city-hero h1 span { color: var(--red); }
.city-hero p { font-size: 17px; color: #bbb; margin-bottom: 28px; text-transform: none; font-weight: 400; font-family: var(--font-body); line-height: 1.7; }

/* ========= BLOG PAGE ========= */
.blog-content { padding: 80px 0; }
.blog-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 50px; }
.blog-article h1 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 20px; }
.blog-article .article-meta { display: flex; gap: 20px; font-size: 13px; color: #999; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.blog-article h2 { font-size: 30px; margin-bottom: 14px; margin-top: 40px; }
.blog-article h3 { font-size: 24px; margin-bottom: 12px; margin-top: 28px; color: var(--red); }
.blog-article p { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 18px; text-transform: none; font-weight: 400; font-family: var(--font-body); }
.blog-article ul, .blog-article ol { margin: 0 0 20px 24px; }
.blog-article ul li, .blog-article ol li { color: var(--gray); font-size: 15px; margin-bottom: 10px; line-height: 1.7; }
.blog-article ul li::marker, .blog-article ol li::marker { color: var(--red); }

/* Blog Sidebar */
.blog-sidebar {}
.sidebar-recent-posts { list-style: none; }
.sidebar-recent-posts li { display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sidebar-recent-posts li:last-child { border-bottom: none; }
.sidebar-post-thumb {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.sidebar-post-info a { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.4; display: block; margin-bottom: 4px; }
.sidebar-post-info a:hover { color: var(--red); }
.sidebar-post-info span { font-size: 12px; color: #999; }

/* ========= BADGES / CERTIFICATIONS ========= */
.badges-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.badge-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}
.badge-icon svg { width: 28px; height: 28px; fill: var(--dark); }
.badge-item span { font-size: 11px; font-weight: 700; color: var(--gray); text-align: center; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }

/* ========= ABOUT PAGE ========= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { height: 200px; background: linear-gradient(135deg, var(--dark2), var(--dark)); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.team-info { padding: 20px; }
.team-info h3 { font-size: 20px; margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--red); font-weight: 600; display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.team-info p { font-size: 13px; color: var(--gray); text-transform: none; font-weight: 400; font-family: var(--font-body); line-height: 1.6; }

/* ========= STATS SECTION ========= */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; }
.stat-card { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-card:last-child { border-right: none; }
.stat-num { font-family: var(--font-heading); font-size: 56px; font-weight: 900; color: var(--red); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ========= GALLERY ========= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
  height: 220px;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(204,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ========= MOBILE NAV ========= */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--dark);
  z-index: 9998;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #333;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.mobile-nav ul { list-style: none; padding: 16px 0; }
.mobile-nav ul li a {
  display: block;
  padding: 14px 24px;
  color: #ccc;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #333;
}
.mobile-nav ul li a:hover { color: var(--red); background: rgba(255,255,255,0.05); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9997;
}
.mobile-nav-overlay.open { display: block; }
.mobile-call-bar {
  background: var(--red);
  padding: 16px 24px;
}
.mobile-call-bar a { color: var(--white); font-family: var(--font-heading); font-size: 20px; font-weight: 900; display: flex; align-items: center; gap: 10px; }
.mobile-call-bar a svg { width: 20px; height: 20px; fill: var(--white); }

/* ========= UTILITY ========= */
.text-red { color: var(--red) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-40 { margin-bottom: 40px; }
.pt-0 { padding-top: 0 !important; }
.hidden { display: none !important; }

/* Alert box */
.alert-box {
  background: #f0f9f0;
  border: 1px solid #28a745;
  border-left: 4px solid #28a745;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  color: #155724;
  display: none;
}
.alert-box.show { display: block; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1100px) {
  .hero-form-box { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .mobile-nav { display: block; }
  .header-cta .btn-call { font-size: 15px; padding: 10px 18px; }
  .service-content-grid { grid-template-columns: 1fr; }
  .blog-content-grid { grid-template-columns: 1fr; }
  .city-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 55px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 70px; }
  .hero-stats { gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .top-bar .container { flex-direction: column; gap: 6px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
