
        :root {
            --brand-navy: #082C4B;
            --brand-red: #C6020C;
            --brand-red-hover: #A30008;
            --brand-white: #ffffff;
            --surface-light: #f7fafc;
            --text-main: #181c1e;
            --text-muted: #43474e;
            --shadow-industrial: 0 10px 30px -5px rgba(8, 44, 75, 0.15);
            --navy: #082C4B;
            --cream: #f5f0ea;
             --border-color: #e2e8f0;
             --red: #C6020C;
               --brand-light: #e8f0f8;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .font-headline {
            
            font-weight: 700;
        }
        
    /* HERO */
  .hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(7, 30, 61, 0.92) 0%,
      rgba(11, 53, 98, 0.85) 40%,
      rgba(21, 101, 184, 0.75) 100%
    );
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 24px;
  }
  .hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
  }
  /* FORM CARD */
.hero-form {
    background: rgba(10, 45, 85, 0.95);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

/* FORM INPUTS */
.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px !important;
    border: none;
    margin-bottom: 15px;   
}

.nice-select {
  border-radius: 10px !important;
  padding:12px !important;

}

/* TEXTAREA */
.hero-form textarea {
    height: 120px;
    resize: none;
    margin-top:10px;
}

section{
      padding:80px 0;
      
  }
  
  /* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--navy);
  padding: 1.2rem 0;
  overflow: hidden;
}
.trust-strip .track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-strip .track-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.trust-strip .track-item i { color: var(--red); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


        .display-lg {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .headline-lg {
            font-size: 2.5rem;
            line-height: 1.2;
            font-weight: 800;
        }


        /* Industrial Cards */
        .industrial-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 12px;
            border: 1px solid rgba(8, 44, 75, 0.08);
            box-shadow: var(--shadow-industrial);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .industrial-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--brand-navy);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .industrial-card:hover {
            transform: translateY(-10px);
        }

        .industrial-card:hover::after {
            transform: scaleX(1);
        }

        .feature-icon-wrapper {
            width: 70px;
            height: 70px;
            background: rgba(198, 2, 12, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

       /* ─── ROOF TYPES CAROUSEL ─── */
.roof-types { padding: 6rem 0; background: var(--cream); }
.roof-slide {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(8,44,75,.06);
  transition: box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/*.roof-slide-body {*/
/*  flex-grow: 1;*/
/*}*/
.roof-slide:hover { 
    box-shadow: 0 12px 48px rgba(8,44,75,.14); 
    
}
.roof-slide-img {
  height: 220px;
  overflow: hidden;
}
.roof-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.roof-slide:hover .roof-slide-img img {
    transform: scale(1.08);
    }
.roof-slide-body { 
    padding: 1.5rem; 
    flex-grow: 1;
}
.roof-slide-body h4 {
  
  font-size: 1.25rem;
  /*font-weight: 800;*/
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}



    

/* ─── SERVICES ─── */
.services { padding: 5rem 0; background: #fff; }
.svc-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.svc-tab {
  padding: .55rem 1.3rem;
  border: 1.5px solid rgba(8,44,75,.18);
  background: #fff;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: all .25s ease;
}
.svc-tab:hover, .svc-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.svc-panel { display: none; }
.svc-panel.active { display: flex; }
.svc-panel-img {
  width: 42%;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
}
.svc-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.svc-panel:hover .svc-panel-img img { transform: scale(1.05); }
.svc-panel-img .svc-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 1px;
}
.svc-panel-body {
  flex: 1;
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  border-radius: 0 2px 2px 0;
}
.svc-panel-body h3 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.svc-panel-body h3 em { font-style: normal; color: var(--red); }
.svc-bullets { list-style: none; padding: 0; margin: 0 0 1.8rem; }
.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(8,44,75,.07);
  /*font-size: .88rem;*/
  /*color: #3a4a5a;*/
  line-height: 1.55;
}
.svc-bullets li:last-child { border-bottom: 0; }
.svc-bullets li i {
  color: var(--red);
  font-size: .8rem;
  margin-top: .22rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .svc-panel { flex-direction: column; }
  .svc-panel-img { width: 100%; min-height: 220px; border-radius: 2px 2px 0 0; }
  .svc-panel-body { border-radius: 0 0 2px 2px; padding: 1.5rem; }
}

/*Neighbourhoods*/
 .hover-shadow{
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hover-shadow:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(8, 44, 75, 0.12);
    border-color: var(--brand-red) !important;
}

 /* Value comparison blocks */
      .value-stat-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 14px;
        transition: all 0.3s ease;
      }
      .value-stat-card:hover {
        border-color: var(--brand-red);
        box-shadow: 0 10px 25px rgba(198, 2, 12, 0.06);
        transform: translateY(-4px);
      }

       /* ─── STORM RESPONSE ─── */
.storm { padding: 6rem 0; background: var(--navy); overflow: hidden; position: relative; }
.storm::before {
 
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(198,2,12,.2) 0%, transparent 70%);
  pointer-events: none;
}
.storm-steps { position: relative; }
.storm-steps::before {
  content: '';
  position: absolute;
  left: 24px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(198,2,12,.1) 100%);
}
.storm-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.storm-step:last-child { margin-bottom: 0; }
.step-dot {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform .3s ease;
}
.storm-step:hover .step-dot { transform: scale(1.1); }
.step-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: .3rem;
}
.step-content p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ─── INSPECTION ─── */
.inspection { 
    padding: 6rem 0; 
    background: var(--cream); }
.insp-checklist { 
    list-style: none; 
    padding: 0; margin: 0; }
.insp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(8,44,75,.07);
  /*font-size: .9rem;*/
  /*color: #3a4a5a;*/
}
.insp-checklist li:last-child { border-bottom: 0; }
.insp-checklist li i {
  color: var(--red);
  margin-top: .15rem;
  font-size: .85rem;
  flex-shrink: 0;
  width: 16px;
}
.insp-panel {
  background: var(--navy);
  border-radius: 2px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.insp-panel::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(198,2,12,.25) 0%, transparent 70%);
}
.insp-panel .price-tag {
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.insp-panel .price-label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}


        /* FAQ */
         .education-accordion .accordion-item {
            border: none;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px !important;
            overflow: hidden;
        }

        .education-accordion .accordion-button {
            padding: 1.5rem;
            font-weight: 700;
            background-color: white !important;
            color: var(--brand-navy) !important;
            box-shadow: none !important;
        }

        .education-accordion .accordion-button:not(.collapsed) {
            border-bottom: 2px solid var(--brand-red);
        }

 /* FAQ */
  .accordion-item{ 
      border:1px solid var(--line) !important;
      border-radius:14px !important; 
      overflow:hidden; 
      margin-bottom:12px; 
      background:#fff;
     
  }
  .accordion-button{ 
      font-weight:600; 
      color:var(--brand); 
      background:#fff;
       font-size:18px;  
  }
  .accordion-button:not(.collapsed){
      background:var(--brand-light); 
      color:var(--brand); 
      box-shadow:none;
      
  }
  .accordion-button:focus{ 
      box-shadow:none;
      border-color:var(--line);}
  .accordion-body{ 
      color:var(--muted);}
      
    /*CTA*/
      .contact-card{
  background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid #082c4b;
    box-shadow: 0 10px 30px rgba(8, 44, 75, 0.05);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
   
}  
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(8, 44, 75, 0.1);
   
}
.contact-card .c-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 1.5rem;
    background:#C6020C;
}
.contact-card h4 {
    color: var(--brand);
    margin-bottom: 0.75rem;
}
.contact-card a {
    color: var(--brand);
    font-weight: 700;
    font-size: 1.15rem;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

        
        /* Custom spacing */
        .section-padding {
            padding: 120px 0;
        }

        .bg-navy {
            background-color: var(--brand-navy);
        }

        .text-red {
            color: var(--brand-red);
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 70px 0;
            }

            .display-lg {
                font-size: 2.8rem;
            }

        }
  