/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
  --orange: #f05a1a;
  --orange-dark: #d44d10;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --mid: #2a2a3e;
  --gray: #5a5a7a;
  --light-gray: #f4f4f8;
  --white: #fff;
  --section-pad: 90px 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.1;
  font-weight: 800;
}
.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.centered {
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 40px;
}
.section-title.centered {
  text-align: center;
}
.accent {
  color: var(--orange);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark2);
  padding: 8px 0;
  font-size: 13px;
  color: #aaa;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.top-contacts span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-social {
  display: flex;
  gap: 10px;
}
.top-social a {
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.3s;
}
.top-social a:hover {
  color: var(--orange);
}

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
#header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-bolt {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffb347);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 1px;
}
.logo-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--orange);
}
.main-nav {
  margin-left: auto;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
}
.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: var(--orange);
  background: rgba(240, 90, 26, 0.07);
}
.main-nav a.active {
  color: var(--orange);
  background: rgba(240, 90, 26, 0.1);
}
.header-cta {
  white-space: nowrap;
  font-size: 14px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark2) 50%,
    #0f3460 100%
  );
  background-image: url("https://images.unsplash.com/photo-1621905251918-f9da98e22e3d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 20, 40, 0.92) 0%,
    rgba(15, 20, 40, 0.75) 60%,
    rgba(15, 20, 40, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(240, 90, 26, 0.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s 0.1s ease both;
}
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 550px;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s ease both;
}
.search-input {
  flex: 1;
  min-width: 160px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  backdrop-filter: blur(8px);
}
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-input option {
  color: #000;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  margin: 8px auto 0;
  animation: scrollPulse 2s infinite;
}

/* ===== ABOUT ===== */
.about-strip {
  padding: var(--section-pad);
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 500px;
  display: block;
}
.about-exp-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(240, 90, 26, 0.4);
}
.exp-num {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.exp-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 18px;
}
.about-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 22px;
}
.about-list {
  list-style: none;
  margin-bottom: 28px;
}
.about-list li {
  padding: 8px 0;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid #eee;
}
.about-sig {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.sig-info strong {
  display: block;
  font-size: 16px;
}
.sig-info span {
  color: var(--gray);
  font-size: 13px;
}
.sig-script {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  font-style: italic;
}

/* ===== SERVICE CATEGORIES ===== */
.service-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cat-item {
  height: 340px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 20, 40, 0.85) 0%,
    rgba(15, 20, 40, 0.3) 60%,
    rgba(15, 20, 40, 0.1) 100%
  );
  transition: background 0.4s;
}
.cat-item:hover .cat-overlay {
  background: linear-gradient(
    to top,
    rgba(240, 90, 26, 0.85) 0%,
    rgba(240, 90, 26, 0.3) 60%,
    rgba(240, 90, 26, 0.05) 100%
  );
}
.cat-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cat-item::after {
  content: "->";
  position: absolute;
  bottom: 30px;
  right: 28px;
  z-index: 2;
  color: var(--orange);
  font-size: 22px;
  transition: transform 0.3s;
}
.cat-item:hover::after {
  transform: translateX(6px);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad);
  background: var(--light-gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 8px;
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.service-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.service-panel {
  background-image: linear-gradient(rgba(22, 33, 62, 0.18), rgba(22, 33, 62, 0.18)),
    url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?w=500&q=80");
}
.service-wiring {
  background-image: linear-gradient(rgba(22, 33, 62, 0.18), rgba(22, 33, 62, 0.18)),
    url("https://images.unsplash.com/photo-1581092921461-eab62e97a780?w=500&q=80");
}
.service-safety {
  background-image: linear-gradient(rgba(22, 33, 62, 0.18), rgba(22, 33, 62, 0.18)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=500&q=80");
}
.service-ev {
  background-image: linear-gradient(rgba(22, 33, 62, 0.18), rgba(22, 33, 62, 0.18)),
    url("https://images.unsplash.com/photo-1593941707882-a5bac6861d75?w=500&q=80");
}
.service-solar {
  background-image: linear-gradient(rgba(22, 33, 62, 0.18), rgba(22, 33, 62, 0.18)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?w=500&q=80");
}
.service-construction {
  background-image: linear-gradient(rgba(22, 33, 62, 0.18), rgba(22, 33, 62, 0.18)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=500&q=80");
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.read-more {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: gap 0.3s;
}
.read-more:hover {
  color: var(--orange-dark);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-left {
  display: grid;
  grid-template-columns: 380px 1fr;
}
.cta-image {
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
.cta-text-block {
  background: var(--dark2);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-text-block h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  margin-bottom: 16px;
}
.cta-text-block p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 15px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-right {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
}
.cta-right-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240, 90, 26, 0.25);
}

/* ===== PROJECTS ===== */
.projects {
  padding: var(--section-pad);
}
.project-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border: 2px solid #ddd;
  background: transparent;
  color: var(--gray);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.project-item.large {
  grid-column: span 2;
}
.project-item.tall {
  grid-row: span 2;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-item:hover img {
  transform: scale(1.08);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240, 90, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-item:hover .project-overlay {
  opacity: 1;
}
.project-overlay span {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.project-item.hidden {
  display: none;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark2);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--orange);
  display: inline-block;
  line-height: 1;
}
.stat-plus {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  vertical-align: top;
  margin-top: 8px;
}
.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== WHY US ===== */
.why-us {
  padding: var(--section-pad);
  background: var(--light-gray);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
.emergency-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--orange);
  color: #fff;
  padding: 18px 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(240, 90, 26, 0.35);
}
.em-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}
.emergency-tech {
  background-image: linear-gradient(rgba(240, 90, 26, 0.2), rgba(240, 90, 26, 0.2)),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=300&q=80");
}
.emergency-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.emergency-badge a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.why-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 18px;
}
.why-content > p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 30px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wp-icon {
  min-width: 44px;
  background: rgba(240, 90, 26, 0.1);
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: block;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.wp-insured {
  background-image: linear-gradient(rgba(240, 90, 26, 0.18), rgba(240, 90, 26, 0.18)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=300&q=80");
}
.wp-on-time {
  background-image: linear-gradient(rgba(240, 90, 26, 0.18), rgba(240, 90, 26, 0.18)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=300&q=80");
}
.wp-pricing {
  background-image: linear-gradient(rgba(240, 90, 26, 0.18), rgba(240, 90, 26, 0.18)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=300&q=80");
}
.why-point strong {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}
.why-point p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-pad);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  padding: 44px 36px;
  border: 2px solid #eee;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
  border-color: var(--orange);
  background: var(--dark2);
  color: #fff;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 5px 18px;
  border-radius: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.plan-home {
  background-image: linear-gradient(rgba(22, 33, 62, 0.15), rgba(22, 33, 62, 0.15)),
    url("https://images.unsplash.com/photo-1513694203232-719a280e022f?w=400&q=80");
}
.plan-commercial {
  background-image: linear-gradient(rgba(22, 33, 62, 0.15), rgba(22, 33, 62, 0.15)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=400&q=80");
}
.plan-industrial {
  background-image: linear-gradient(rgba(22, 33, 62, 0.15), rgba(22, 33, 62, 0.15)),
    url("https://images.unsplash.com/photo-1581093458791-9d42e3c2fd45?w=400&q=80");
}
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 14px;
  color: var(--gray);
}
.pricing-card.featured ul li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.plan-price {
  margin-bottom: 24px;
}
.price-amount {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--orange);
}
.price-period {
  font-size: 16px;
  color: var(--gray);
}
.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== EMERGENCY SECTION ===== */
.emergency-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.emergency-left {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center;
}
.emergency-left-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 40, 0.5);
}
.emergency-right {
  background: var(--dark);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.emergency-right h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: #fff;
  margin-bottom: 18px;
}
.emergency-right p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 15px;
}

/* ===== BLOG ===== */
.blog {
  padding: var(--section-pad);
  background: var(--light-gray);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.blog-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-body {
  padding: 26px 24px;
}
.blog-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.blog-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.blog-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===== NEWSLETTER BAR ===== */
.newsletter-bar {
  background: var(--orange);
  padding: 50px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter-inner h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 13px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  min-width: 280px;
  font-family: "Barlow", sans-serif;
}
.newsletter-form .btn {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.newsletter-form .btn:hover {
  background: var(--dark2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
}
.brand-col .logo {
  margin-bottom: 20px;
}
.brand-col .logo-main {
  color: #fff;
}
.brand-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  display: inline-block;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--orange);
  color: #fff;
}
.footer-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--orange);
  padding-left: 5px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  align-items: flex-start;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-4px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark2);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav ul {
  list-style: none;
  text-align: center;
}
.mobile-nav ul li {
  margin: 14px 0;
}
.mobile-nav ul a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.mobile-nav ul a:hover {
  color: var(--orange);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-exp-badge {
    right: 20px;
  }
  .cta-left {
    grid-template-columns: 1fr;
  }
  .cta-image {
    min-height: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .cta-banner {
    grid-template-columns: 1fr;
  }
  .cta-right {
    min-height: 280px;
  }
  .emergency-section {
    grid-template-columns: 1fr;
  }
  .emergency-right {
    padding: 60px 40px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .service-cats {
    grid-template-columns: 1fr;
  }
  .cat-item {
    height: 200px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 100px 24px 60px;
  }
  .hero-search {
    flex-direction: column;
  }
  .search-input {
    min-width: 100%;
  }
}
