:root {
  --brand-navy: #000;
  --brand-blue: #791119;
  --brand-gold: #fff;
  --bg-light: #f4f7fa;
  --bg-card: #ffffff;
  --text-title: #000;
  --text-body: #000;
  --border-color: #e2e8f0;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Montserrat', sans-serif !important;
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;

}

.zpsection {
  padding-block-start: 0px !important;
  padding-block-end: 0px !important;
  padding-inline-start: 0;
  padding-inline-end: 0;
}

.zprow .zpcol-sm-1,
.zprow .zpcol-sm-2,
.zprow .zpcol-sm-3,
.zprow .zpcol-sm-4,
.zprow .zpcol-sm-5,
.zprow .zpcol-sm-6,
.zprow .zpcol-sm-7,
.zprow .zpcol-sm-8,
.zprow .zpcol-sm-9,
.zprow .zpcol-sm-10,
.zprow .zpcol-sm-11,
.zprow .zpcol-sm-12,
.zprow .zpcol-md-1,
.zprow .zpcol-md-2,
.zprow .zpcol-md-3,
.zprow .zpcol-md-4,
.zprow .zpcol-md-5,
.zprow .zpcol-md-6,
.zprow .zpcol-md-7,
.zprow .zpcol-md-8,
.zprow .zpcol-md-9,
.zprow .zpcol-md-10,
.zprow .zpcol-md-11,
.zprow .zpcol-md-12 {
  position: relative;
  min-block-size: 1px;
  padding-inline-start: 0px !important;
  padding-inline-end: 0px !important;
}

.zpelement {
  margin-block-start: 0px !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* PREMIUM SCROLL ANIMATION CONFIGURATION */
.reveal-element {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.active-view {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION 1: HERO BANNER */
.hero-banner {
  background: linear-gradient(135deg, #001b48 0%, #02457a 100%), url('Screenshot 2026-07-10 111344.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
  animation: fadeInHero 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-banner .case-label {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.hero-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
  line-height: 1.15;
  color: white !important;
}

.hero-banner .location {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-banner .location i {
  color: var(--brand-gold);
}

.hero-banner p {
  max-width: 650px;
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 40px;
}

/* Features Strip inside Hero */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-item i {
  color: var(--brand-gold);
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
}

/* MAIN CONTENT ROW FRAMEWORK */
.section-row {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(24, 44, 78, 0.02);
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 20px;
}

.section-title {
  font-size: 1.6rem;
  color: var(--brand-navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 20px;
  position: relative;
}

.main-paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-body);
}

/* Large Image Containers */
.feature-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-img-wrapper:hover img {
  transform: scale(1.04);
}

/* Left Deficiencies List */
.deficiency-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center;
}

.deficiency-icon {
  background: #f0f4f8;
  color: var(--brand-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.deficiency-text {
  font-size: 0.95rem;
  font-weight: 500;
  flex-grow: 1;
}

.deficiency-thumb {
  width: 110px;
  height: 75px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.deficiency-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION 3: WHY DALEX ROOFING & SCOPE */
.split-asymmetric {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.testimonial-column {
  background: linear-gradient(135deg, #001b48 0%, #02457a 100%);
  ;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px;
  border-radius: var(--radius);
}

.testimonial-column .section-title {
  color: #fff;
}

.quote-block {
  margin: 25px 0;
  border-left: 3px solid var(--brand-gold);
  padding-left: 20px;
}

.quote-block p {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
}

.stars {
  color: var(--brand-gold);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Scope Grid Checkboxes */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 20px 0 0px;
}

.scope-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  padding: 14px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-title);
  transition: transform 0.3s ease;
}

.scope-item:hover {
  transform: translateX(4px);
  border-color: rgba(37, 87, 167, 0.3);
}

.scope-item i {
  color: var(--brand-blue);
  background: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

/* TIMELINE TRACKS ENGINE */
.timeline-section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}



.timeline-bar-wrapper {
  position: relative;
  margin-bottom: 30px;
  padding-top: 20px;
}

.timeline-line {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.timeline-node-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-bubble {
  width: 36px;
  height: 36px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto;
  border: 4px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-grid-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(24, 44, 78, 0.08);
}

.timeline-card .img-box {
  height: 120px;
  width: 100%;
}

.timeline-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-card p {
  padding: 12px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-body);
  font-weight: 500;
}

/* FINISHED PRODUCT SYSTEM ROW */
.finished-master-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.finished-large-img {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.finished-large-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finished-mini-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mosaic-thumb {
  border-radius: 4px;
  overflow: hidden;
  height: 95px;
  border: 1px solid var(--border-color);
}

.mosaic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-verdict-card {
  background: #791119;
  color: #fff;
  border-radius: var(--radius);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dark-verdict-card .stars {
  color: var(--brand-gold);
  margin-bottom: 15px;
}

.dark-verdict-card p {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

.dark-verdict-card .author {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

/* BOTTOM ASSESSMENT SECTION */
.bottom-matrix-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.bottom-card-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.bottom-quote-box {
  background: var(--bg-light);
  border-top: 5px solid var(--brand-blue);
  padding: 15px;
  margin: 15px 0;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  color: var(--brand-navy);
}

.recommendation-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.recommendation-panel .stars {
  font-size: 1.1rem;
  margin: 15px 0;
}

.recommendation-panel .main-bold-quote {
  font-size: 1.3rem !important;
  font-weight: 800;
  color: var(--brand-blue);
  font-style: italic;
  padding-top: 14px;
}

/* ------------------------------------------- */
/* RESPONSIVE MEDIA BREAKPOINTS (MOBILE & TAB) */
/* ------------------------------------------- */

/* TABLET RESPONSIVE VIEW (Under 992px) */
@media (max-width: 992px) {

  .grid-2,

  .bottom-matrix-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
  }

  .split-asymmetric {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }


  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .timeline-line {
    display: none;

  }

  .timeline-node-row {
    display: none;

  }

  .timeline-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .finished-master-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-card .img-box {
    height: 315px;
    width: 100%;
  }

  .finished-large-img {
    height: auto;
  }


  .bottom-card-panel {
    height: auto !important;
  }

  .hero-banner p {
    font-size: 16px !important;
  }

  .feature-item {
    font-size: 15px !important;
  }

  .main-paragraph {
    font-size: 16px !important;
  }

  .timeline-card p {

    font-size: 15px !important;
  }

  [data-element-id="elm_usxW6-P-OkRvw8WpYRwdvQ"].zprow {
    border-radius: 1px;
    padding: 0px 20px !important;
  }

  .zpsocialprofile-align-mobile-center {
    justify-content: flex-start !important;
    padding-top: 20px !important;
  }
}


/* MOBILE RESPONSIVE VIEW (Under 600px) */
@media (max-width: 600px) {
  .section-row {
    padding: 24px 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .hero-banner {
    padding: 50px 0;
    text-align: left;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .deficiency-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .deficiency-thumb {
    width: 100%;
    height: 150px;
  }

  .timeline-grid-cards {
    grid-template-columns: 1fr;
  }


  .timeline-card .img-box {
    height: auto;
    width: 100%;
  }

  .testimonial-column {
    padding: 24px 16px;
  }


  .grid-2,
  .split-asymmetric,
  .bottom-matrix-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
}