/* Light theme override for service detail pages */
body{
  background: radial-gradient(1400px 700px at 50% 0%, rgba(193,18,31,.35), transparent 65%),
              radial-gradient(1000px 500px at 80% 30%, rgba(193,18,31,.22), transparent 60%),
              linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  color: #1a1a1a;
}

/* Override global variables for light theme */
:root{
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --line: rgba(0,0,0,.12);
}

/* Header for service pages */
.topbar{
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

.topbar__inner{
  color: #c8cfdb;
}

.topbar__link{
  color: #f4f6fb;
}

.footer{
  background: linear-gradient(90deg, rgba(8,11,17,.98), rgba(193,18,31,.14), rgba(8,11,17,.98));
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer,
.footer a,
.footer__small,
.footer__note{
  color: #c8cfdb;
}

.footer__brand,
.footer__head{
  color: #f4f6fb;
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,16,.72);
  backdrop-filter: blur(14px);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__logo{
  height: 210px;
  width: auto;
}

.brand__name{
  color: #111111;
}

.brand__tag{
  color: #444444;
}

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
}

.nav a{
  color: #111111;
}

.nav a:hover{
  color: #000000;
}

.nav__link{
  color: #111111;
}

.nav__dropdown{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(10,12,16,.98);
  color: #f4f6fb;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 210px;
}

.nav__dropdown a{
  color: #f4f6fb !important;
  border-radius: 8px;
}

.nav__dropdown a:hover{
  background: rgba(255,255,255,.06);
}

.nav__group + .nav__group{
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.nav__group-title{
  display: block;
  padding: 6px 10px 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #c8cfdb;
  opacity: .95;
}

.header{
  height: 115px;
  background: #ffffff;
  color: #111111;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 8px 0;
}

.header__inner{
  min-height: 110px;
  height: 80%;
  align-items: center;
}

.hamburger span{
  background: #111111;
}

.hamburger{
  width: 48px;
  height: 40px;
}

.hamburger span{
  height: 3px;
}

@media (max-width: 520px){
  .header{ padding: 4px 0 !important; height: 64px !important; }
  .header__inner{ min-height: 48px !important; }
  .brand__text{ display: block !important; }
  .brand__name{
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
  .brand__tag{ display: none !important; }
  .brand__logo{ height: 48px !important; }
  .brand{ gap: 10px !important; }
}

.service-hero{
  position: relative;
  padding: 0;
  min-height: 42vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.service-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background:
    radial-gradient(60% 60% at 30% 35%, rgba(0,0,0,.35), rgba(0,0,0,.80)),
    url("../../img/Servicebg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

body.page-shingle .service-hero::before{
  background-image:
    radial-gradient(60% 60% at 30% 35%, rgba(0,0,0,.12), rgba(0,0,0,.42)),
    url("../../img/ShingleheroBG.png");
}

body.page-tile .service-hero::before{
  background-image: url("../../img/Difftilebg.jpg");
}

body.page-tile .service-hero__panel{
  position: relative;
  color: #ffffff;
  max-width: 720px;
  width: 100%;
}

body.page-tile .service-hero__panel::before{
  content: "";
  position: absolute;
  inset: -18px -22px;
  background: rgba(0,0,0,.50);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  z-index: -1;
}

@media (max-width: 768px){
  body.page-tile .service-hero__panel::before{
    inset: -14px -14px;
    border-radius: 12px;
  }
}

body.page-metal .service-hero::before{
  background-image:
    radial-gradient(60% 60% at 30% 35%, rgba(0,0,0,.19), rgba(0,0,0,.56)),
    url("../../img/hero-3.png");
}

.service-hero > *{
  position: relative;
  z-index: 1;
}

.service-hero .container{
  padding-top: clamp(60px, 10vw, 100px);
  padding-bottom: clamp(60px, 10vw, 100px);
}

/* Services overview page only */
body:has(.service-card) .service-hero{
  min-height: 42vh;
}

body:has(.service-card) .service-hero .container{
  padding-top: clamp(60px, 10vw, 100px);
  padding-bottom: clamp(60px, 10vw, 100px);
}

body:has(.service-card) .service-hero::before{
  background:
    radial-gradient(65% 65% at 28% 35%, rgba(0,0,0,.42), rgba(0,0,0,.78)),
    url("../../img/Servicebg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body:has(.service-card) .service-hero .service-chip{
  background: rgba(193,18,31,.85);
  border: 1px solid rgba(193,18,31,.95);
  color: #ffffff;
}

body:has(.service-card) .service-hero .service-hero__title{
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,.75);
}

body:has(.service-card) .service-hero .service-hero__sub{
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 8px rgba(0,0,0,.70);
}

/* Keep headings/text aligned in detail sections */
.section__head{
  display: block;
  margin-bottom: 40px;
}

.section__head h2{
  margin-bottom: 10px;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  color: #0a0e1a;
}

.section__head p{
  max-width: 760px;
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* Card heading styling */
.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0e1a;
  margin-bottom: 12px;
  margin-top: 0;
}

.card p {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.6;
}

/* Soften alternating section background on detail pages */
.section--alt{
  background: linear-gradient(180deg, rgba(193,18,31,.05), rgba(255,255,255,0));
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.service-chip{
  display:inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.45);
  border-radius: 999px;
  color: #ffa726;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.service-hero__title{
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.service-hero__sub{
  color: #ffffff;
  max-width: 65ch;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 32px;
  line-height: 1.5;
}

.service-hero__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-hero__actions .btn{
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 768px){
  .service-hero{
    min-height: 50vh;
  }
  
  .service-hero .container{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .service-hero__actions{
    flex-direction: column;
  }
  
  .service-hero__actions .btn{
    width: 100%;
  }
}

.service-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.services-row{
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 18px;
}

.services-row__lead h2{
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 0.95;
  margin: 0;
  color: #1f2b44;
}

.services-row__arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #c1121f;
  border: 1px solid rgba(193,18,31,.3);
  background: rgba(193,18,31,.08);
  font-size: 22px;
}

.services-row .services-row__cards{
  grid-template-columns: repeat(3, minmax(210px, 285px));
  justify-content: start;
  gap: 14px;
}

.work-gallery__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-card{
  display: flex;
  flex-direction: column;
}

.work-card__media{
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
}

.work-card__media img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.work-card p{
  margin-top: 0;
}

@media (max-width: 980px){
  .work-gallery__grid{
    grid-template-columns: 1fr;
  }

  .work-card__media img{
    height: 230px;
  }
}

/* Service cards on main services page */
.service-card{
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18,24,36,.95), rgba(10,14,22,.96)) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 0 !important;
}

.service-card__media{
  position: relative;
  height: 170px;
  background: linear-gradient(135deg, rgba(193,18,31,.35), rgba(193,18,31,.15));
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.service-card__badge{
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(193,18,31,.35);
  border: 1px solid rgba(255,255,255,.18);
  z-index: 1;
}

.service-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__content{
  padding: 14px 16px 16px;
}

.services-row .service-card h3{
  margin-bottom: 8px;
  color: #ffffff !important;
  line-height: 1.15;
  font-weight: 400 !important;
  font-size: 30.72px !important;
}

.service-card__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border: 1px solid rgba(255,255,255,.18);
  color: #ffffff;
  font-size: 11.2px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(193,18,31,.32);
  transition: transform .2s ease, filter .2s ease;
  margin-top: auto;
  align-self: flex-start;
}

.service-card__link:hover{
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.service-grid--2{
  grid-template-columns: repeat(2, 1fr);
}

.service-grid--3{
  grid-template-columns: repeat(3, 1fr);
}

.service-chip{
  display:inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  color: #ffa726;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.service-cta{
  margin-top: 22px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-about{
  position: relative;
  max-width: 920px;
  margin: 56px auto 0;
  padding: 48px 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(248,248,250,.96));
  border: 2px solid rgba(193,18,31,.15);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08), 0 2px 8px rgba(193,18,31,.06);
}

.service-about__badge{
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(193,18,31,.3);
  border: 3px solid #ffffff;
  overflow: visible;
}

.service-about__badge img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transform: scale(1.7);
}

.service-about__title{
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #0a0e1a;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.service-about__divider{
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c1121f, transparent);
  margin: 16px auto 28px;
}

.service-about__lead{
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 500;
  text-align: center;
}

.service-about__highlights{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(193,18,31,.04);
  border-left: 4px solid #c1121f;
  border-radius: 8px;
}

.service-about__point{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.6;
}

.service-about__point i{
  color: #c1121f;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-about p{
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-about__closing{
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0 !important;
}

@media (max-width: 768px){
  .service-about{
    padding: 36px 24px;
    margin: 48px auto 0;
  }
  
  .service-about__title{
    font-size: 24px;
  }
  
  .service-about__highlights{
    padding: 18px;
  }
}

/* Light theme card override */
.card{
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(255,255,255,.90)) !important;
  border: 1px solid rgba(193,18,31,.15) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.09), 0 0 1px rgba(193,18,31,.12) !important;
  transition: all 0.3s ease !important;
  padding: 32px 24px !important;
  border-radius: var(--radius) !important;
}

.card:hover {
  border-color: rgba(193,18,31,.35) !important;
  box-shadow: 0 12px 40px rgba(193,18,31,.18), 0 0 1px rgba(193,18,31,.25) !important;
  transform: translateY(-3px) !important;
}

.card h3{
  color: #0a0e1a !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  margin-bottom: 14px !important;
  margin-top: 0 !important;
}

.card p, .card .bullets{
  color: #5a5a5a !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Keep services overview cards dark and readable (overrides generic .card light theme) */
.services-row .service-card{
  background: linear-gradient(180deg, rgba(18,24,36,.95), rgba(10,14,22,.96)) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  height: 100%;
}

.services-row .service-card__content{
  background: linear-gradient(180deg, rgba(18,24,36,.98), rgba(10,14,22,.98));
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 150px;
}

.services-row .service-card h3{
  color: #ffffff !important;
  font-size: 38.4px !important;
  line-height: 1.15;
  margin-bottom: 8px !important;
}

/* Material type cards with image placeholder */
.material-card{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18,24,36,.95), rgba(10,14,22,.96));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.20);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
}

.material-card__img{
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(193,18,31,.12), rgba(193,18,31,.06));
  border: 1px dashed rgba(0,0,0,.20);
  display: grid;
  place-items: center;
  color: #888;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}

.material-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.material-section__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.material-section .material-card{
  padding: 0;
  background: linear-gradient(180deg, rgba(18,24,36,.95), rgba(10,14,22,.96));
  border: 1px solid rgba(255,255,255,.12);
}

.material-card__media{
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, rgba(193,18,31,.25), rgba(193,18,31,.10));
  border-bottom: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}

.material-card__badge{
  position: absolute;
  left: 16px;
  top: 16px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(193,18,31,.45);
  border: 1px solid rgba(255,255,255,.20);
  z-index: 1;
}

.material-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.material-section .material-card__img{
  width: 280px;
  height: 280px;
  border: 0;
  background: transparent;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.material-section .material-card__img img{
  border-radius: 0;
}

.material-card__content h3{
  margin-top: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.material-card__content{
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(180deg, rgba(18,24,36,.98), rgba(10,14,22,.98));
}

.material-card__content p{
  margin-bottom: 14px;
}

.material-card__content .bullets{
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  gap: 14px;
  flex: 1;
}

.material-card__content .btn{
  margin-top: auto;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  align-self: flex-start;
}

.material-section .material-card .btn--ghost{
  background: linear-gradient(180deg, var(--red), rgba(193,18,31,.82));
  border-color: rgba(193,18,31,.82);
  color: #ffffff;
}

.material-section .material-card .btn--ghost:hover{
  filter: brightness(1.06);
  border-color: var(--red);
}

.material-section .material-card .btn--primary{
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border: 1px solid rgba(255,255,255,.18);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(193,18,31,.35);
  transition: transform .2s ease, filter .2s ease;
}

.material-section .material-card .btn--primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* Installation Excellence Section */
.installation-excellence{
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.excellence-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.excellence-grid__media{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 0 1px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.excellence-grid__media:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0,0,0,.22), 0 0 1px rgba(0,0,0,.1);
}

.excellence-badge{
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(193,18,31,.45);
  border: 1px solid rgba(255,255,255,.25);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.excellence-grid__media img{
  width: 100%;
  height: auto;
  display: block;
  min-height: 520px;
  object-fit: cover;
}

.excellence-grid__content h2{
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: #0a0e1a;
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

.excellence-grid__content p{
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.excellence-grid__content p:last-of-type{
  margin-bottom: 32px;
}

.excellence-cta{
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.excellence-cta .btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: all 0.3s ease;
}

.excellence-cta .btn i{
  font-size: 16px;
}

.excellence-cta .btn--primary{
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border: 1px solid rgba(255,255,255,.15);
  color: #ffffff;
}

.excellence-cta .btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193,18,31,.35);
  filter: brightness(1.08);
}

.excellence-cta .btn--dark{
  background: linear-gradient(135deg, #0a0e1a, #1a1e2a);
  border: 1px solid rgba(255,255,255,.1);
  color: #ffffff;
}

.excellence-cta .btn--dark:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  border-color: rgba(193,18,31,.3);
}

.excellence-features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.excellence-feature{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.excellence-feature::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c1121f, #e83a47);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.excellence-feature:hover::before{
  transform: scaleX(1);
}

.excellence-feature:hover{
  border-color: rgba(193,18,31,.2);
  box-shadow: 0 8px 28px rgba(193,18,31,.15);
  transform: translateY(-4px);
}

.excellence-feature i{
  font-size: 28px;
  color: #ffffff;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(193,18,31,.3);
}

.excellence-feature span{
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5a;
}

.excellence-feature strong{
  color: #0a0e1a;
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

/* Installation Process Section */
.installation-process-section{
  padding: clamp(56px, 8vw, 96px) 0;
}

.installation-process-section .section__head{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 32px;
}

.installation-process-section .section__head h2{
  margin-bottom: 16px;
}

.installation-process-section .section__head p{
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

/* Installation Process Timeline */
.installation-timeline{
  position: relative;
  max-width: 920px;
  margin: 36px auto 0;
  padding-left: 16px;
}

.installation-timeline::before{
  content: "";
  position: absolute;
  left: 24px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, 
    rgba(193,18,31,.85) 0%,
    rgba(232,58,71,.75) 25%,
    rgba(232,58,71,.75) 75%,
    rgba(193,18,31,.85) 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(193,18,31,.3);
}

.installation-step{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.installation-step:last-child{
  margin-bottom: 0;
}

.installation-step:hover .installation-step__number{
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(193,18,31,.45);
}

.installation-step:hover .installation-step__card{
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(193,18,31,.15);
  border-color: rgba(193,18,31,.25);
}

.installation-step__number{
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 
    0 4px 18px rgba(193,18,31,.4),
    inset 0 -2px 6px rgba(0,0,0,.2),
    inset 0 1px 3px rgba(255,255,255,.3);
  border: 2px solid #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.installation-step__card{
  flex: 1;
  padding: 20px 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.installation-step__card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c1121f 0%, #e83a47 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.installation-step:hover .installation-step__card::before{
  opacity: 1;
}

.installation-step__card h3{
  font-size: 17px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.installation-step__card p{
  font-size: 14px;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

@media (max-width: 768px){
  .installation-timeline{
    padding-left: 0;
  }
  
  .installation-timeline::before{
    left: 24px;
  }
  
  .installation-step{
    gap: 20px;
    margin-bottom: 28px;
  }
  
  .installation-step__number{
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .installation-step__card{
    padding: 20px 24px;
  }
  
  .installation-step__card h3{
    font-size: 17px;
  }
  
  .installation-step__card p{
    font-size: 14px;
  }
}

/* Florida Considerations Cards */
.florida-considerations-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.florida-card{
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: all 0.3s ease;
  position: relative;
}

.florida-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(193,18,31,.16);
  border-color: rgba(193,18,31,.2);
}

.florida-card__image{
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, rgba(193,18,31,.12), rgba(232,58,71,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(193,18,31,.25);
  position: relative;
  overflow: hidden;
}

.florida-card__image::before{
  content: "";
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(193,18,31,.03) 10px, rgba(193,18,31,.03) 20px);
}

.florida-card__image i{
  position: relative;
  z-index: 1;
  font-size: 56px;
  color: #c1121f;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.florida-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.florida-card:hover .florida-card__image i{
  opacity: 0.35;
  transform: scale(1.1);
}

.florida-card:hover .florida-card__image img{
  transform: scale(1.05);
}

.florida-card__content{
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.florida-card__content h3{
  font-size: 16px;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 10px 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.florida-card__content p{
  font-size: 13px;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0;
  flex: 1;
}

@media (max-width: 1024px){
  .florida-considerations-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px){
  .florida-considerations-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .florida-card__image{
    height: 160px;
  }
  
  .florida-card__image i{
    font-size: 44px;
  }
  
  .florida-card__content{
    padding: 20px;
  }
  
  .florida-card__content h3{
    font-size: 17px;
  }
}

.process-intro{
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(193,18,31,.08), rgba(193,18,31,.03));
  border-left: 4px solid #c1121f;
  border-radius: 8px;
}

.process-intro strong{
  font-size: 17px;
  line-height: 1.6;
  color: #0a0e1a;
  font-weight: 700;
}

.installation-process-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 48px;
}

.installation-process-grid::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, rgba(232,58,71,.65), rgba(232,58,71,.25), rgba(232,58,71,.65));
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.process-step{
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.process-step:hover{
  border-color: rgba(193,18,31,.2);
  box-shadow: 0 8px 28px rgba(193,18,31,.12);
  transform: translateY(-4px);
}

.process-step__icon{
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border-radius: 12px;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(193,18,31,.35);
  border: 1px solid rgba(255,255,255,.2);
  position: relative;
  z-index: 2;
}

.process-step__content{
  flex: 1;
}

.process-step__content h3{
  font-size: 17px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.process-step__content p{
  font-size: 14px;
  line-height: 1.65;
  color: #5a5a5a;
  margin: 0;
}

.process-cta{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.process-cta .btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: all 0.3s ease;
}

.process-cta .btn i{
  font-size: 16px;
}

.process-cta .btn--primary{
  background: linear-gradient(135deg, #1a1e2a, #2a2e3a);
  border: 1px solid rgba(255,255,255,.1);
  color: #ffffff;
}

.process-cta .btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  background: linear-gradient(135deg, #0a0e1a, #1a1e2a);
}

.process-cta .btn--secondary{
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border: 1px solid rgba(255,255,255,.15);
  color: #ffffff;
}

.process-cta .btn--secondary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193,18,31,.35);
  filter: brightness(1.08);
}

@media (max-width: 980px){
  .installation-process-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .installation-process-grid::before{
    left: 28px;
    top: 70px;
    bottom: 70px;
    width: 2px;
    transform: none;
  }

  .process-step{
    padding: 24px 20px;
  }

  .process-step__icon{
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .process-intro{
    padding: 18px 20px;
    margin-bottom: 36px;
  }

  .process-intro strong{
    font-size: 16px;
  }

  .process-cta{
    flex-direction: column;
  }

  .process-cta .btn{
    width: 100%;
    justify-content: center;
  }

  .excellence-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .excellence-grid__media img{
    min-height: 400px;
  }

  .excellence-cta{
    flex-direction: column;
  }
  
  .excellence-cta .btn{
    width: 100%;
    justify-content: center;
  }
  
  .excellence-features{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .excellence-feature{
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 20px;
  }
  
  .excellence-feature i{
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

@media (min-width: 681px) and (max-width: 980px){
  .excellence-features{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact section overrides for light theme */
.contact__head h2{
  color: #1a1a1a;
}

.contact__head p{
  color: #5a5a5a;
}

.contact__label{
  color: #5a5a5a;
}

.contact__value{
  color: #1a1a1a;
}

.contact__value:hover{
  color: var(--red);
}

/* Light theme card styling */
.card {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
  border: 1px solid rgba(193,18,31,.12);
  box-shadow: 0 4px 16px rgba(0,0,0,.08), 0 0 1px rgba(193,18,31,.12);
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(193,18,31,.25);
  box-shadow: 0 8px 32px rgba(193,18,31,.15), 0 0 1px rgba(193,18,31,.2);
  transform: translateY(-2px);
}

/* Icon styling for service cards */
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: -45px auto 20px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border-radius: 14px;
  color: white;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(193, 18, 31, 0.25);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.card:hover .card__icon {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(193, 18, 31, 0.35);
}

.card__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: -45px auto 20px;
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border-radius: 14px;
  border: none;
  color: white;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(193, 18, 31, 0.25);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.card:hover .card__step-icon {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(193, 18, 31, 0.35);
}

/* Service grid styling for better spacing */
.service-grid {
  row-gap: 32px;
}

.service-grid--2 {
  row-gap: 32px;
}

/* Decision comparison cards with images */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.decision-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
  border: 1px solid rgba(193,18,31,.12);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08), 0 0 1px rgba(193,18,31,.12);
  transition: all 0.3s ease;
}

.decision-card:hover {
  border-color: rgba(193,18,31,.25);
  box-shadow: 0 8px 32px rgba(193,18,31,.15), 0 0 1px rgba(193,18,31,.2);
  transform: translateY(-4px);
}

.decision-card__image {
  height: 320px;
  width: 100%;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 16px;
}

.decision-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decision-card__content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.decision-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.decision-card .bullets {
  gap: 12px;
}

.decision-card .bullets li {
  color: #5a5a5a;
  line-height: 1.6;
}

/* Repair section split feature */
.repair-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  border: 1px solid rgba(193,18,31,.12);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255,255,255,.97), rgba(255,255,255,.9));
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.repair-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(193,18,31,.24);
  box-shadow: 0 16px 36px rgba(193,18,31,.16);
}

.repair-feature__content {
  padding: 24px;
}

.repair-columns {
  display: grid;
  gap: 18px;
}

.repair-block {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(193,18,31,.12);
  border-radius: 12px;
  padding: 18px;
}

.repair-block h3 {
  margin-bottom: 12px;
}

.repair-feature__media {
  min-height: 100%;
  border-left: 1px solid rgba(193,18,31,.14);
  background: linear-gradient(120deg, rgba(193,18,31,.11), rgba(193,18,31,.04));
}

.repair-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.repair-feature--reverse .repair-feature__media {
  order: 1;
  border-left: 0;
  border-right: 1px solid rgba(193,18,31,.14);
}

.repair-feature--reverse .repair-feature__content {
  order: 2;
}

/* Maintenance page enhancements */

body.page-maintenance .service-hero .service-hero__title,
body.page-maintenance .service-hero .service-hero__sub {
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}

.maintenance-trust {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.maintenance-trust__item {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(193,18,31,.14);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.maintenance-trust__item strong {
  font-size: .9rem;
  color: #0a0e1a;
}

.maintenance-trust__item span {
  font-size: .82rem;
  color: #5a5f69;
  line-height: 1.35;
}

body.page-maintenance .maintenance-feature .repair-block {
  background: rgba(255,255,255,.84);
}

body.page-maintenance .maintenance-feature .repair-steps li {
  background: rgba(255,255,255,.82);
}

.repair-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  color: #8e1321;
  background: rgba(193,18,31,.09);
  border: 1px solid rgba(193,18,31,.2);
}

.repair-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.repair-steps li {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(193,18,31,.14);
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.5;
  color: #4f5663;
}

.repair-steps li strong {
  color: #1a1a1a;
}


@media (max-width: 680px){
  .material-card{
    flex-direction: column;
  }

  .material-section__grid{
    grid-template-columns: 1fr;
  }
  
  .material-card__img{
    width: 100%;
    height: 120px;
  }

  .material-section .material-card{
    flex-direction: column;
  }

  .material-card__media{
    height: 200px;
  }

  .material-section .material-card__img{
    width: 100%;
    height: 220px;
  }

  .repair-feature {
    grid-template-columns: 1fr;
  }

  .maintenance-trust {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .repair-feature__content {
    order: 1;
    padding: 18px;
  }

  .repair-feature__media {
    order: 2;
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid rgba(193,18,31,.14);
  }

  .repair-feature--reverse .repair-feature__media {
    order: 2;
    border-right: 0;
  }

  .repair-feature--reverse .repair-feature__content {
    order: 1;
  }

  .repair-block {
    padding: 16px;
  }
}

@media (max-width: 980px){
  .services-row{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-row__lead{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .services-row__lead h2{
    font-size: clamp(30px, 8vw, 46px);
    line-height: 1;
  }

  .services-row__arrow{
    margin-top: 0;
  }

  .service-grid,
  .service-grid--2,
  .service-grid--3{
    grid-template-columns: 1fr;
  }

  .repair-feature {
    grid-template-columns: 1fr;
  }

  .material-section__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .services-row .services-row__cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* Service Area Section */
.areas{
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.areas__grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.areas__head{
  max-width: 720px;
  margin-bottom: 32px;
  text-align: center;
}

.areas__head h2{
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.areas__head p{
  color: #666;
  font-size: 17px;
  line-height: 1.6;
}

.areas__single{
  max-width: none;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.areas__single h3{
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  padding-bottom: 16px;
  border-bottom: 3px solid #c1121f;
  display: inline-block;
  margin-bottom: 8px;
}

.areas__map{
  overflow: hidden;
  padding: 0;
  min-height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e8e8e8;
  position: relative;
}

.areas__map::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  pointer-events: none;
}

.areas__map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#service-map{
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
}

.areas__list{
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;

  color: #2a2a2a;
  font-size: 15.5px;
  font-weight: 500;
}

.areas__list li{
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
  padding-left: 44px;
  transition: all 0.2s ease;
  border: 1px solid #e8e8e8;
}

.areas__list li:hover{
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(193, 18, 31, 0.1);
  border-color: #c1121f;
}

.areas__list li::before{
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 16px;
  color: #c1121f;
  font-size: 16px;
}

.areas__single .cta-row{
  margin-top: auto;
  padding-top: 12px;
}

@media (max-width: 980px){
  .areas__grid{
    grid-template-columns: 1fr;
  }
  .areas__single{
    padding: 32px;
  }
  .areas__list{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .areas__single{
    padding: 24px;
  }
  .areas__list{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .areas__single h3{
    font-size: 20px;
  }
  .areas__map{
    min-height: 320px;
  }
  #service-map{
    min-height: 320px;
  }
}

/* Service Showcase Section */
.service-showcase{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  margin: 0;
  background: #ffffff;
}

.service-showcase__image{
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.service-showcase__image::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #c1121f 0%, #e83a47 100%);
  z-index: 2;
}

.service-showcase__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-showcase__content{
  padding: clamp(40px, 6vw, 72px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: #ffffff;
}

.service-showcase__title{
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.service-showcase__content p{
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0;
}

.service-showcase__actions{
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn--cta-dark{
  background: #2a2a2a;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn--cta-dark:hover{
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn--cta-primary{
  background: linear-gradient(135deg, #c1121f 0%, #e83a47 100%);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn--cta-primary:hover{
  background: linear-gradient(135deg, #a00f1a 0%, #d12f3d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 18, 31, 0.3);
}

@media (max-width: 980px){
  .service-showcase{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .service-showcase__image{
    min-height: 350px;
    order: 1;
  }
  
  .service-showcase__content{
    order: 2;
    padding: 40px 32px;
  }
  
  .service-showcase__actions{
    flex-direction: column;
  }
  
  .btn--cta-dark,
  .btn--cta-primary{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px){
  .service-showcase__content{
    padding: 32px 24px;
  }
  
  .service-showcase__image{
    min-height: 280px;
  }
}

/* Process Section */
.process-section{
  padding: clamp(56px, 8vw, 80px) 0;
  background: linear-gradient(180deg, #f5f6f8 0%, #ffffff 100%);
  margin-top: 64px;
}

.process-header{
  text-align: center;
  margin-bottom: 48px;
}

.process-header h2{
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.3px;
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step{
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.process-step__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #f5f5f5;
  border-radius: 50%;
  color: #c1121f;
  font-size: 24px;
  margin-bottom: 20px;
}

.process-step h3{
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.process-step p{
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media (max-width: 980px){
  .process-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px){
  .process-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .process-header h2{
    font-size: 28px;
  }
}

/* Material Comparison Section */
.material-comparison {
  background: linear-gradient(135deg, #f8fafc 0%, #ecf0f5 100%);
  padding: 4rem 0;
}

.material-comparison--compact {
  padding: 3rem 0;
}

.material-comparison--compact .comparison-cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.material-comparison--compact .comparison-card {
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.material-comparison--compact .comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.material-comparison--compact .comparison-card__header,
.material-comparison--compact .comparison-card__features,
.material-comparison--compact .comparison-card__footer {
  padding: 1.25rem;
}

.material-comparison--compact .comparison-card__header i {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.material-comparison--compact .comparison-card__header h3 {
  font-size: 0.98rem;
}

.material-comparison--compact .comparison-card__badge,
.material-comparison--compact .comparison-card__badge-top {
  font-size: 0.6rem;
  padding: 0.3rem 0.6rem;
}

.material-comparison--compact .feature-label {
  font-size: 0.68rem;
}

.material-comparison--compact .feature-value {
  font-size: 0.88rem;
}

.material-comparison--compact .rating-bar {
  height: 4px;
}

.material-comparison--compact .comparison-card__features li {
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(193, 18, 31, 0.2);
}

.comparison-card--featured {
  transform: scale(1.04);
  border-color: #c1121f;
}

.comparison-card--featured:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 50px rgba(193, 18, 31, 0.25);
}

.comparison-card__badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #c1121f 0%, #e83a47 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.comparison-card__header {
  padding: 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  border-bottom: 2px solid #e8ecf1;
}

.comparison-card--shingle .comparison-card__header { border-bottom-color: #f5a623; }
.comparison-card--tile .comparison-card__header { border-bottom-color: #c1121f; }
.comparison-card--metal .comparison-card__header { border-bottom-color: #667eea; }

.comparison-card__header i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.comparison-card--shingle .comparison-card__header i { color: #f5a623; }
.comparison-card--tile .comparison-card__header i { color: #c1121f; }
.comparison-card--metal .comparison-card__header i { color: #667eea; }

.comparison-card__header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1f35;
  margin: 0.5rem 0;
}

.comparison-card__badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.comparison-card--shingle .comparison-card__badge {
  background: rgba(245, 166, 35, 0.15);
  color: #b45309;
}

.comparison-card--tile .comparison-card__badge {
  background: rgba(193, 18, 31, 0.15);
  color: #c1121f;
}

.comparison-card--metal .comparison-card__badge {
  background: rgba(102, 126, 234, 0.15);
  color: #667eea;
}

.comparison-card__features {
  flex: 1;
  padding: 2rem;
  list-style: none;
  margin: 0;
}

.comparison-card__features li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8ecf1;
}

.comparison-card__features li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.feature-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f35;
}

.rating-bar {
  width: 100%;
  height: 6px;
  background: #e8ecf1;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.25rem;
}

.rating-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.comparison-card--shingle .rating-fill {
  background: linear-gradient(90deg, #f5a623 0%, #f5c953 100%);
}

.comparison-card--tile .rating-fill {
  background: linear-gradient(90deg, #c1121f 0%, #e83a47 100%);
}

.comparison-card--metal .rating-fill {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.star-rating {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.star-rating i {
  font-size: 0.9rem;
  color: #f5a623;
}

.comparison-card--tile .star-rating i {
  color: #c1121f;
}

.comparison-card--metal .star-rating i {
  color: #667eea;
}

.feature-icon {
  font-size: 1.2rem;
  color: #47c881;
  display: inline-block;
  width: fit-content;
}

.comparison-card--tile .feature-icon {
  color: #c1121f;
}

.comparison-card--metal .feature-icon {
  color: #667eea;
}

.comparison-card__footer {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  border-top: 1px solid #e8ecf1;
  text-align: center;
}

.comparison-card__footer .best-for {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.comparison-card__footer .btn {
  width: 100%;
}

/* Comparison Button Styling */
.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

.btn--dark {
  background: linear-gradient(135deg, #1a1f35 0%, #2d3548 100%);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 31, 53, 0.25);
}

@media (max-width: 980px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-card--featured {
    transform: scale(1);
  }

  .comparison-card--featured:hover {
    transform: translateY(-8px) scale(1);
  }

  .comparison-card__header {
    padding: 1.5rem;
  }

  .comparison-card__features {
    padding: 1.5rem;
  }

  .comparison-card__footer {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .material-comparison {
    padding: 2rem 0;
  }

  .comparison-cards {
    gap: 1rem;
  }

  .comparison-card__badge-top {
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    padding: 0.4rem 0.7rem;
  }

  .comparison-card__header {
    padding: 1.25rem;
  }

  .comparison-card__header i {
    font-size: 2rem;
  }

  .comparison-card__header h3 {
    font-size: 1.2rem;
  }

  .comparison-card__features {
    padding: 1.25rem;
  }

  .comparison-card__features li {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .feature-value {
    font-size: 1rem;
  }

  .comparison-card__footer {
    padding: 1.25rem;
  }

  .comparison-card__footer .best-for {
    font-size: 0.85rem;
  }
}


/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ecf0f5 100%);
  padding: 2.5rem 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.faq-image {
  min-height: 400px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8ecf1 0%, #dfe5eb 100%);
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,.08);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(193, 18, 31, 0.12);
  transform: translateY(-2px);
  border-color: rgba(193, 18, 31, 0.2);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c1121f 0%, #e83a47 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 10;
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  border-bottom: 1px solid #e8ecf1;
  color: #1a1f35;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.faq-question:hover {
  background: #f8fafc;
  border-bottom-color: #c1121f;
}

.faq-question span {
  flex: 1;
  display: block;
  line-height: 1.4;
}

.faq-question i {
  font-size: 1.1rem;
  color: #c1121f;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #c1121f 0%, #e83a47 100%);
  color: white;
  border-bottom-color: #8b0a17;
}

.faq-item.active .faq-question i {
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 1.25rem 1.5rem;
}

.faq-answer p {
  color: #475569;
  line-height: 1.65;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1200px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-image {
    min-height: 300px;
  }
}

@media (max-width: 980px) {
  .faq-section {
    padding: 2rem 0;
  }
  
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .faq-grid {
    gap: 0.875rem;
    margin-top: 1.25rem;
  }

  .faq-image {
    min-height: 250px;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    max-height: 350px;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 1.5rem 0;
  }

  .faq-layout {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .faq-grid {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .faq-image {
    min-height: 200px;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    gap: 0.875rem;
  }

  .faq-question i {
    font-size: 1rem;
    margin-top: 1px;
  }

  .faq-item.active .faq-answer {
    max-height: 350px;
    padding: 1rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

/* Installation Contact Section */
.installation-contact{
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(180deg, rgba(193,18,31,.06), transparent);
  border-top: 1px solid rgba(0,0,0,.08);
}

.contact-header{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.contact-header h2{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #0a0e1a;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.contact-header p{
  font-size: 16px;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

.contact-layout{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: stretch;
}

.contact-quick__card{
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(193,18,31,.12), rgba(193,18,31,.06));
  border: 1px solid rgba(193,18,31,.2);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.contact-quick__card h3{
  font-size: 20px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 24px 0;
}

.contact-quick__item{
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-quick__item:last-of-type{
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.contact-quick__label{
  font-size: 13px;
  font-weight: 700;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-quick__value{
  font-size: 18px;
  font-weight: 700;
  color: #c1121f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-quick__value:hover{
  color: #0a0e1a;
}

.contact-quick__actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-quick__actions .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: all 0.3s ease;
}

.contact-quick__actions .btn--primary{
  background: linear-gradient(135deg, #c1121f, #e83a47);
  border: 1px solid rgba(255,255,255,.15);
  color: #ffffff;
}

.contact-quick__actions .btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193,18,31,.35);
  filter: brightness(1.08);
}

.contact-quick__actions .btn--secondary{
  background: #ffffff;
  border: 2px solid #c1121f;
  color: #c1121f;
}

.contact-quick__actions .btn--secondary:hover{
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(193,18,31,.05), rgba(232,58,71,.05));
  box-shadow: 0 8px 28px rgba(193,18,31,.2);
}

.contact-form-wrap{
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.contact-form-wrap h3{
  font-size: 20px;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 24px 0;
}

.installation-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label{
  font-size: 14px;
  font-weight: 600;
  color: #0a0e1a;
}

.form-group input,
.form-group select,
.form-group textarea{
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #0a0e1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: #c1121f;
  box-shadow: 0 0 0 3px rgba(193,18,31,.1);
}

.form-group textarea{
  resize: none;
  min-height: 100px;
}

.form-group .btn{
  margin-top: 6px;
}

@media (max-width: 980px){
  .contact-layout{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-quick__card,
  .contact-form-wrap{
    padding: 28px 24px;
  }

  .contact-quick__actions{
    flex-direction: row;
  }

  .contact-quick__actions .btn{
    flex: 1;
  }
}

@media (max-width: 640px){
  .installation-contact{
    padding: clamp(48px, 8vw, 64px) 0;
  }

  .contact-header{
    margin-bottom: 36px;
  }

  .contact-quick__card,
  .contact-form-wrap{
    padding: 24px 20px;
  }

  .contact-quick__actions{
    flex-direction: column;
  }

  .contact-quick__actions .btn{
    width: 100%;
  }
}

/* ===== Shingle Benefits Section ===== */
.shingle-benefits {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ecf0f5 100%);
}

.shingle-benefits .section__head {
  color: #0a0e1a;
  margin-bottom: 2rem;
}

.shingle-benefits .section__head h2 {
  color: #0a0e1a;
}

.shingle-benefits .section__head p {
  color: #475569;
}

.shingle-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.shingle-type-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shingle-type-card__media {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
}

.shingle-type-card__media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.shingle-type-card__body {
  padding: 22px;
}

.shingle-type-card .bullets {
  margin-bottom: 0;
}

.split-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.split-panel {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.split-panel__media {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.10), rgba(8, 11, 17, 0.10));
}

.split-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-panel__content {
  padding: 0;
}

.split-panel__content h3 {
  margin: 0 0 6px 0;
  font-size: 16.5px;
  color: #0b1732;
}

.split-panel__content p {
  margin: 0 0 6px 0;
  color: #4a5a72;
  line-height: 1.45;
  font-size: 14px;
}

.split-panel__content .bullets {
  margin-bottom: 0;
}

.split-panel__content .bullets {
  margin-top: 6px;
  gap: 6px;
  font-size: 13.5px;
}

@media (max-width: 960px) {
  .split-panel {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .split-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-panel__media {
    width: 100%;
    height: 140px;
  }
}

.shingle-choice {
  background: linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
}

.shingle-choice__layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.shingle-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.choice-card {
  background: #fff;
  border: 1px solid rgba(193, 18, 31, 0.14);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(8, 20, 40, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(8, 20, 40, 0.12);
}

.choice-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.choice-card--budget .choice-card__icon {
  background: linear-gradient(135deg, #1f8f4a 0%, #39b86e 100%);
}

.choice-card--durability .choice-card__icon {
  background: linear-gradient(135deg, #c1121f 0%, #e83a47 100%);
}

.choice-card--style .choice-card__icon {
  background: linear-gradient(135deg, #3453d1 0%, #5875f7 100%);
}

.choice-card h3 {
  font-size: 20px;
  margin: 0 0 8px 0;
  color: #0b1732;
}

.choice-card p {
  margin: 0 0 10px 0;
  color: #4a5a72;
  line-height: 1.55;
}

.choice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.choice-list li {
  position: relative;
  padding-left: 20px;
  color: #2f3f58;
  line-height: 1.45;
}

.choice-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f8f4a;
  font-weight: 700;
}

.choice-summary {
  background: linear-gradient(160deg, #0c1426 0%, #141d33 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 22px;
  color: #f2f5fb;
  box-shadow: 0 18px 40px rgba(8, 20, 40, 0.28);
}

.choice-summary__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.24);
  border: 1px solid rgba(232, 58, 71, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.choice-summary h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
}

.choice-summary p {
  margin: 0 0 14px 0;
  color: #c9d4e8;
  line-height: 1.6;
}

.choice-summary__points {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.choice-summary__points div {
  color: #dbe6f8;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 0;
}

.benefits-timeline {
  position: relative;
  padding: 0;
}

.benefits-timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #c1121f 0%, #e83a47 100%);
}

.benefit-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.benefit-step__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c1121f 0%, #e83a47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgb(255, 254, 254);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(193, 18, 31, 0.3);
  transition: all 0.3s ease;
}

.benefit-step:hover .benefit-step__number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(193, 18, 31, 0.5);
}

.benefit-step__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(10, 10, 10);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.benefit-step__content p {
  color: #040404;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.benefits-highlight {
  background: white;
  border: 2px solid rgba(193, 18, 31, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.benefits-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c1121f 0%, #e83a47 100%);
}

.highlight-badge {
  display: inline-block;
  background: #c1121f;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.benefits-highlight h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a0e1a;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.benefits-highlight > p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}

.highlight-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.highlight-points li {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.highlight-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #47c881;
  font-weight: 700;
  font-size: 1.2rem;
}

.benefits-highlight > p:last-of-type {
  margin-bottom: 0;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(193, 18, 31, 0.2);
}

@media (max-width: 1200px) {
  .shingle-choice__layout {
    grid-template-columns: 1fr;
  }

  .shingle-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shingle-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-highlight {
    padding: 2rem;
  }
}

@media (max-width: 980px) {
  .shingle-choice__grid {
    grid-template-columns: 1fr;
  }

  .shingle-types-grid {
    grid-template-columns: 1fr;
  }

  .shingle-type-card__media img {
    height: 220px;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .benefits-timeline::before {
    left: 29px;
  }

  .benefit-step {
    margin-bottom: 2rem;
  }

  .benefit-step__number {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .benefit-step__content h3 {
    font-size: 1.1rem;
  }

  .benefits-highlight {
    padding: 1.875rem;
  }
}

@media (max-width: 640px) {
  .choice-card {
    padding: 16px;
  }

  .choice-summary {
    padding: 16px;
  }

  .choice-summary h3 {
    font-size: 20px;
  }

  .shingle-type-card__media img {
    height: 190px;
  }

  .shingle-type-card__body {
    padding: 18px;
  }

  .shingle-benefits {
    padding: 2rem 0;
  }

  .benefits-layout {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .benefits-timeline::before {
    left: 24px;
  }

  .benefit-step {
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
  }

  .benefit-step__number {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .benefit-step__content h3 {
    font-size: 1rem;
  }

  .benefit-step__content p {
    font-size: 0.9rem;
  }

  .benefits-highlight {
    padding: 1.5rem;
  }

  /* Decision card responsive */
  .decision-card {
    flex-direction: column;
  }

  .decision-card__image {
    height: 280px;
  }

  .decision-card__content {
    padding: 1.5rem;
  }

  .decision-card__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}