.elementor-107 .elementor-element.elementor-element-614cee61{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-107 .elementor-element.elementor-element-e706ebb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-61695d30 */.service-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url('https://leveldemolitionfl.com/wp-content/uploads/2026/05/WhatsApp-Image-2026-05-02-at-1.48.45-AM-1.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
}

/* Dark overlay */
.service-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.2) 50%
  );
  z-index: 1;
}

/* Content */
.service-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Heading */
.service-content h1 {
    font-family: Unbounded,Sans-Serif;
  color: #fff;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: -90px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .service-content h1 {
    font-size: 40px;
  }

  .service-hero {
    height: 60vh;
    padding: 0 5%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dcf874f *//* ============================================================
   AMERICAN DEMOLITION — PROJECTS SECTION
   Brand Accent: #C85506
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent:       #C85506;
  --accent-dark:  #9e4104;
  --text-dark:    #1a1a1a;
  --text-white:   #ffffff;
  --bg-page:      #ffffff;
  --bg-overlay:   rgba(200, 85, 6, 0.40);
  --radius:       0px;
  --gap:          22px;
  --ease:         0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Section wrapper ─────────────────────────────────────── */
.projects-section {
  background: var(--bg-page);
  padding: 72px 48px 80px;
  font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
}

.projects-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ── 3-column responsive grid ───────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 58px;
}

/* ── Individual card ────────────────────────────────────── */
.project-card {
  display: flex;
  flex-direction: column;
}

.project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.project-link:focus-visible .project-image-wrap {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Image container ────────────────────────────────────── */
.project-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #1c1c1c;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ease);
}

/* ── YouTube play overlay ───────────────────────────────── */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background var(--ease);
  pointer-events: none;
}

.play-icon {
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity var(--ease), transform var(--ease);
}

.play-icon svg {
  display: block;
  margin-left: 4px; /* optical centre for triangle */
}

/* ── Hover state ────────────────────────────────────────── */
.project-link:hover .project-image-wrap img {
  transform: scale(1.07);
}

.project-link:hover .play-overlay {
  background: var(--bg-overlay);
}

.project-link:hover .play-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── Left accent bar on title (brand detail) ────────────── */
.project-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
  padding: 13px 0 6px;
  transition: color var(--ease);
}

.project-title::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 18px;
  background: var(--accent);
  margin-top: 1px;
  transition: background var(--ease);
}

.project-link:hover .project-title {
  color: var(--accent-dark);
}

.project-link:hover .project-title::before {
  background: var(--accent-dark);
}

/* ── "VIEW CURRENT WORK" CTA ────────────────────────────── */
.projects-cta {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--text-white);
  text-decoration: none;
  padding: 14px 44px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  transition: background var(--ease), color var(--ease);
  position: relative;
  overflow: hidden;
}

.view-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
  z-index: 0;
}

.view-btn span {
  position: relative;
  z-index: 1;
  transition: color var(--ease);
}

.view-btn svg {
  position: relative;
  z-index: 1;
  transition: transform var(--ease), stroke var(--ease);
}

.view-btn:hover::after {
  transform: scaleX(1);
}

.view-btn:hover span {
  color: var(--accent);
}

.view-btn:hover svg {
  stroke: var(--accent);
  transform: translateX(4px);
}

/* ── Divider above footer (optional, re-add if needed) ──── */
.projects-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-top: 80px;
}

/* ── Responsive breakpoints ─────────────────────────────── */
@media (max-width: 1024px) {
  .projects-section {
    padding: 60px 36px 70px;
  }
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .projects-section {
    padding: 44px 20px 56px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 44px;
  }

  .view-btn {
    padding: 13px 32px;
    font-size: 11.5px;
    letter-spacing: 2px;
  }
}/* End custom CSS */