:root{
    --primary-navy:#0B3C5D;
    --dark-navy:#082B44;
    --cta-orange:#F97316;
    --cta-hover:#EA580C;
    --warm-sand:#F4EDE4;
    --white:#FFFFFF;
    --light-cream:#FAF7F2;
    --charcoal:#2B2B2B;
    --slate-gray:#6B7280;
    --soft-gray:#E5E7EB;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    color:var(--charcoal);
}

/* =======================
   NAVBAR
======================= */

.main-navbar{
    background:var(--light-cream);
    border-bottom:1px solid var(--soft-gray);
    padding:18px 0;
}

.logo-icon{
    width:48px;
    height:48px;
    background:var(--primary-navy);
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.site-logo{
    height:80px;
    width:auto;
    display:block;
}

@media (max-width:768px){
    .site-logo{
        height:48px;
    }
}


.nav-link{
    font-weight:700;
    text-transform:uppercase;
    color:var(--dark-navy);
    font-size:14px;
    margin:0 10px;
}

.nav-link:hover{
    color:var(--cta-orange);
}

.phone-box{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.phone-box i{
    color:var(--cta-orange);
    font-size:26px;
}

.phone-box small{
    display:block;
    color:var(--cta-orange);
    font-weight:700;
}

.phone-box strong{
    color:var(--dark-navy);
}



.dropdown-menu{
    border-radius:12px;
    padding:12px 0;
    min-width:280px;
}

.dropdown-item{
    padding:12px 20px;
    font-weight:600;
    color:#0B3C5D;
}

.dropdown-item:hover{
    background:#F4EDE4;
    color:#F97316;
}

.navbar .dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
}

/* =======================
   HERO
======================= */

.hero{
    position:relative;
    background:var(--warm-sand);
    overflow:hidden;
    min-height:720px;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        #F4EDE4 0%,
        rgba(244,237,228,.97) 35%,
        rgba(244,237,228,.78) 55%,
        rgba(244,237,228,.15) 80%,
        rgba(244,237,228,0) 100%
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:3;
    max-width:560px;
}

.rating-box{
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:12px 16px;
    border-radius:8px;
    margin-bottom:25px;
}

.rating-box .stars{
    color:var(--cta-orange);
    letter-spacing:3px;
}

.rating-box strong{
    display:block;
    color:var(--dark-navy);
}

.hero h1{
    font-size:64px;
    font-weight:900;
    line-height:1.05;
    max-width:550px;
color: #082B44;

}

.hero h1 span{
    color:var(--cta-orange);
}

.hero p{
    font-size:22px;
    line-height:1.6;
    margin-bottom:35px;
    max-width:550px;
}

.btn-orange{
    background:var(--cta-orange);
    color:#fff;
    border:none;
    font-weight:800;
    padding:18px 32px;
    text-transform:uppercase;
}

.btn-orange:hover{
    background:var(--cta-hover);
    color:#fff;
}

.btn-call{
    background:#fff;
    border:1px solid var(--soft-gray);
    font-weight:800;
    padding:18px 32px;
    color:var(--dark-navy);
}


.btn-call:hover{
   background:#fff;
}


.btn-call i{
    color:var(--cta-orange);
}

.trust-bar{
        width:calc(100% + 250px);
    background:#082B44;
    border-radius:8px;
    margin-top:40px;
}

.trust-item{
    padding:22px;
    color:#fff;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    text-transform:uppercase;
}

.trust-item i{
    font-size:28px;
}

/* =======================
   HERO IMAGE
======================= */

.hero-image{
    position:absolute;
    right:0;
    bottom:0;
    height:100%;
    width:auto;
    z-index:0;

    object-fit:contain;
    object-position:right bottom;
}


.hero-buttons{
    display:flex;
    gap:16px;
    margin-top:30px;
}

/* =======================
   RESPONSIVE
======================= */

@media(max-width:1400px){

.hero h1{
    font-size:70px;
}

}

@media(max-width:1200px){

.hero h1{
    font-size:60px;
}

.hero-image{
    opacity:.9;
}

}

@media(max-width:991px){

.hero{
    min-height:auto;
    padding:100px 0;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.18;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:52px;
}

.trust-bar .row > div{
    border-bottom:1px solid rgba(255,255,255,.1);
}

}

@media(max-width:576px){

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:18px;
}

}


/* services section */

.modern-services-section {
  background: #FAF7F2;
  padding: 90px 0;
  overflow: hidden;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading span {
  color: #F97316;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading h2 {
  color: #082B44;
  font-size: 46px;
  font-weight: 900;
  margin: 10px 0 18px;
}

.heading-line {
  width: 70px;
  height: 5px;
  background: #F97316;
  border-radius: 50px;
  margin: 0 auto;
}

.modern-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.modern-slider::before,
.modern-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.modern-slider::before {
  left: 0;
  background: linear-gradient(90deg, #FAF7F2, transparent);
}

.modern-slider::after {
  right: 0;
  background: linear-gradient(270deg, #FAF7F2, transparent);
}

.modern-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: serviceSlide 28s linear infinite;
}

.modern-slider:hover .modern-track {
  animation-play-state: paused;
}

.modern-card {
  width: 310px;
  min-width: 310px;
  height: 430px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(8, 43, 68, 0.14);
}

.modern-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 237, 193, 0.05) 0%,
    rgba(8,43,68,0.55) 48%,
    rgba(8,43,68,0.96) 100%
  );
}

.modern-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 2;
  color: #FFFFFF;
}

.modern-card-content i {
  width: 52px;
  height: 52px;
  background: #F97316;
  color: #FFFFFF;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  /* margin-bottom: 10px; */
}

.modern-card-content h4 {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
}

.modern-card-content p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,255,255,.88);
}


.service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.45rem;
    margin-top:18px;
    padding:12px 12px;

    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:.95rem;
    border-radius:10px;
    transition:.3s ease;
}

.service-btn:hover,
.service-btn:focus{
  
    color:#fff;
    transform:translateY(-3px);
}

.service-btn i{
    font-size:.9rem;
    transition:.3s ease;
}

.service-btn:hover i{
    transform:translateX(4px);
}

@keyframes serviceSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-55%);
  }
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 32px;
  }

  .modern-card {
    width: 270px;
    min-width: 270px;
    height: 390px;
  }

  .modern-card-content {
    left: 18px;
    right: 18px;
  }
}


.why-choose-section{
    background:#FAF7F2;
}

.why-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:10px;
}

.section-subtitle{
  color:#F97316;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.why-content h2{
    color:#082B44;
    font-size:26px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.why-list{
    padding:0;
    margin:0;
    list-style:none;
}

.why-list li{
    display:flex;
    align-items:center;
    margin-bottom:16px;
    color:#2B2B2B;
    font-size:17px;
    font-weight:500;
}

.why-list i{
    color:#F97316;
    font-size:18px;
    margin-right:12px;
}

/* Trust Card */

.trust-card{
    background:#F4EDE4;
    border-radius:12px;
    padding:45px 30px;
    text-align:center;
    height:100%;
}

.trust-icon{
    color:#F97316;
    font-size:50px;
    margin-bottom:15px;
}

.trust-card h3{
    color:#082B44;
    font-size:42px;
    font-weight:900;
    margin-bottom:5px;
}

.trust-card h5{
    color:#082B44;
    font-size:18px;
    font-weight:800;
    margin-bottom:15px;
}

.stars{
    color:#F97316;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:15px;
}

.trust-card p{
    color:#6B7280;
    margin:0;
    line-height:1.7;
}


.map-wrapper::after{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:120px;
    height:100%;
    background:linear-gradient(
        to right,
        #F4EDE4 0%,
        rgba(244,237,228,0) 100%
    );
    z-index:2;
}

/* Responsive */

@media(max-width:991px){

    .why-content{
        text-align:center;
    }

    .why-content h2{
        font-size:38px;
    }

    .why-list{
        display:inline-block;
        text-align:left;
    }

    .trust-card{
        max-width:420px;
        margin:auto;
    }
}

@media(max-width:576px){

    .why-image img{
        height:280px;
    }

    .why-content h2{
        font-size:32px;
    }

    .why-list li{
        font-size:15px;
    }

    .trust-card{
        padding:35px 25px;
    }

    .trust-card h3{
        font-size:34px;
    }
}





.process-section {
  background: #FAF7F2;
  padding: 70px 0;
}

.process-heading span {
  color: #F97316;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.process-heading h2 {
  color: #082B44;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 45px;
}

.process-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.process-step {
  position: relative;
  text-align: center;
  width: 22%;
}

.step-icon {
  width: 78px;
  height: 78px;
  background: #082B44;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
}

.step-number {
  position: absolute;
  top: -8px;
  left: calc(50% - 48px);
  width: 28px;
  height: 28px;
  background: #F97316;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.process-step h4 {
  color: #082B44;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
}

.process-step p {
  color: #2B2B2B;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.process-arrow {
  color: #C8BCAE;
  font-size: 34px;
  margin-top: 22px;
}

@media (max-width: 991px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 420px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 5px 0;
  }

  .process-heading h2 {
    font-size: 30px;
  }
}





.before-after-section {
  background: #FAF7F2;
  padding: 70px 0;
}

.before-after-heading {
  margin-bottom: 30px;
}

.before-after-heading span {
  color: #F97316;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.before-after-heading h2 {
  color: #082B44;
  font-size: 34px;
  font-weight: 900;
  margin: 5px 0 0;
}



.ba-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.ba-img-wrapper{
    position:relative;
    display:flex;
    height:240px;
}

.ba-half{
    position:relative;
    width:50%;
}

.ba-half img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ba-half:first-child{
    border-right:3px solid #fff;
}

.ba-arrow{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:48px;
    height:48px;
    background:#F97316;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    z-index:5;
    border:3px solid #fff;
}

.ba-label{
    position:absolute;
    bottom:12px;
    background:#082B44;
    color:#fff;
    padding:6px 12px;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    border-radius:4px;
}

.before{
    left:12px;
}

.after{
    right:12px;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #FFFFFF;
  transform: translateX(-50%);
  z-index: 2;
}

.ba-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  background: #F97316;
  color: #FFFFFF;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: 20px;
  border: 3px solid #FFFFFF;
}

.ba-label {
  position: absolute;
  bottom: 10px;
  background: #082B44;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 3px;
  z-index: 4;
}

.ba-label.before {
  left: 10px;
}

.ba-label.after {
  right: 10px;
}

@media (max-width: 991px) {
  .ba-img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .before-after-heading h2 {
    font-size: 28px;
  }

  .ba-img {
    height: 190px;
  }
}




.service-area-section{
    background:#F4EDE4; /* Same as screenshot */
    overflow:hidden;
}

.service-area-content{
    background:#F4EDE4;
    padding:70px 60px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.section-subtitle{
    color:#F97316;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.service-area-content h2{
    color:#082B44;
    font-size:42px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:28px;
}

.area-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px 30px;
}

.area-list div{
 color:#2B2B2B;
    font-size:15px;
    font-weight:600;
}

.area-list i{
    color:#F97316;
    margin-right:8px;
}

/* MAP SIDE */

.map-wrapper{
    position:relative;
    height:100%;
    min-height:430px;
    overflow:hidden;
}

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

.map-wrapper::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(244, 237, 228, 0.3); /* #F4EDE4 */
    z-index:1;
}

/* PIN */

.map-pin{
    position:absolute;
    top:38%;
    left:52%;
    transform:translate(-50%,-50%);
    font-size:65px;
    color:#082B44;
}

/* TABLET */

@media(max-width:991px){

    .service-area-content{
        padding:60px 30px;
        text-align:center;
    }

    .service-area-content h2{
        font-size:42px;
    }

    .area-list{
        grid-template-columns:repeat(2,1fr);
        text-align:left;
        max-width:600px;
        margin:auto;
    }

    .map-wrapper{
        min-height:350px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .service-area-content h2{
        font-size:34px;
    }

    .area-list{
        grid-template-columns:1fr;
        gap:14px;
    }

    .map-wrapper{
        min-height:280px;
    }

    .map-pin{
        font-size:50px;
    }

}



.cta-section {
  background: #082B44;
  padding: 42px 0;
}

.cta-box {
  display: flex;
  align-items: center;
  gap: 35px;
  color: #FFFFFF;
}

.cta-icon {
  font-size: 82px;
  color: rgba(255,255,255,.12);
  flex-shrink: 0;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 6px;
}

.cta-content p {
  margin: 0;
  color: #FFFFFF;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 18px;
}

.cta-btn-primary {
  background: #F97316;
  color: #FFFFFF;
  padding: 16px 30px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
}

.cta-btn-primary:hover {
  background: #EA580C;
  color: #FFFFFF;
}

.cta-btn-outline {
  border: 2px solid rgba(255,255,255,.85);
  color: #FFFFFF;
  padding: 14px 28px;
  font-weight: 900;
  border-radius: 6px;
  text-transform: uppercase;
}

.cta-btn-outline span {
  display: block;
  font-size: 11px;
  line-height: 1;
}

.cta-btn-outline:hover {
  background: #FFFFFF;
  color: #082B44;
}

@media (max-width: 991px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }
}


.cta-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.cta-btn{
    height:90px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

/* ORANGE BUTTON */

.cta-btn-primary{
    width:270px;
    background:#F97316;
    color:#fff;
    font-weight:800;
    font-size:18px;
    gap:12px;
}

.cta-btn-primary:hover{
    background:#EA580C;
    color:#fff;
}

/* PHONE BUTTON */

.cta-btn-phone{
    width:180px;
    border:2px solid rgba(255,255,255,.7);
    color:#fff;
    gap:12px;
}

.cta-btn-phone:hover{
    background:#fff;
    color:#082B44;
}

.cta-btn-phone i{
    font-size:20px;
}

.phone-content{
    text-align:center;
}

.phone-content small{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    line-height:1;
}

.phone-content strong{
    display:block;
    font-size:16px;
    font-weight:900;
    line-height:1.2;
}

/* MOBILE */

@media(max-width:991px){

    .cta-actions{
        flex-direction:column;
        width:100%;
    }

    .cta-btn-primary,
    .cta-btn-phone{
        width:100%;
        max-width:350px;
    }

}


.cta-actions{
    display:flex;
    gap:20px;
    align-items:center;
}

/* ORANGE BUTTON */

.cta-btn-primary{
    width:260px;
    height:74px;
    background:#F97316;
    border-radius:6px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    color:#fff;
    text-decoration:none;

    font-size:14px;
    font-weight:800;
    letter-spacing:.3px;
    text-transform:uppercase;
}

.cta-btn-primary i{
    font-size:18px;
}

/* PHONE BUTTON */

.cta-btn-phone{
    width:180px;
    height:74px;

    border:2px solid rgba(255,255,255,.7);
    border-radius:6px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    color:#fff;
    text-decoration:none;
}

.cta-btn-phone i{
    font-size:18px;
    color:#fff;
}

.phone-text{
    text-align:left;
}

.phone-text small{
    display:block;

    font-size:11px;
    font-weight:700;

    line-height:1;
    letter-spacing:.4px;
    text-transform:uppercase;

    margin-bottom:4px;

    color:#ffffff;
}

.phone-text strong{
    display:block;

    font-size:15px;
    font-weight:900;
    line-height:1;

    color:#ffffff;
}

/* Hover */

.cta-btn-primary:hover{
    background:#EA580C;
    color:#fff;
}

.cta-btn-phone:hover{
    background:#ffffff;
    color:#082B44;
}

.cta-btn-phone:hover i,
.cta-btn-phone:hover small,
.cta-btn-phone:hover strong{
    color:#082B44;
}


.cta-logo{
    flex-shrink:0;
}

.cta-logo img{
    width:120px;
    height:auto;

}


/* start root */
.repair-solutions-section{
    padding:90px 0;
    background:#FFFFFF;
}

.content-tag{
    display:inline-block;
    background:#F4EDE4;
    color:#F97316;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
}

.content-title{
    color:#082B44;
    font-size:52px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:25px;
}

.content-text{
    color:#6B7280;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#FAF7F2;
    padding:18px;
    border-radius:10px;
    border:1px solid #E5E7EB;
}

.feature-item i{
    color:#F97316;
    font-size:22px;
}

.feature-item span{
    color:#082B44;
    font-weight:700;
}

/* Right Card */

.repair-card{
    background:linear-gradient(
        135deg,
        #082B44,
        #0B3C5D
    );
    border-radius:20px;
    padding:40px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.repair-stat{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    border-radius:14px;
    padding:30px 20px;
    text-align:center;
}

.repair-stat h3{
    color:#F97316;
    font-size:34px;
    font-weight:900;
    margin-bottom:10px;
}

.repair-stat span{
    color:#FFFFFF;
    font-size:15px;
    font-weight:600;
}

/* Responsive */

@media(max-width:991px){

    .content-title{
        font-size:40px;
    }

    .repair-card{
        margin-top:20px;
    }
}

@media(max-width:576px){

    .content-title{
        font-size:32px;
    }

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

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


.repair-image-wrapper{
    position:relative;
}

.repair-image{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(8,43,68,.12);
}

.experience-badge{
    position:absolute;
    bottom:30px;
    right:-20px;

    background:#082B44;
    color:#fff;

    border-radius:18px;
    padding:22px 30px;

    text-align:center;

    box-shadow:0 20px 40px rgba(8,43,68,.18);
}

.experience-badge h4{
    font-size:38px;
    font-weight:900;
    color:#F97316;
    margin:0;
}

.experience-badge span{
    font-size:14px;
    font-weight:600;
}

@media(max-width:991px){

    .repair-image{
        height:450px;
    }

    .experience-badge{
        right:20px;
        bottom:20px;
    }
}

@media(max-width:576px){

    .repair-image{
        height:320px;
    }

    .experience-badge{
        padding:18px 22px;
    }

    .experience-badge h4{
        font-size:28px;
    }
}





/* end root */


/* start Smooth */

.repair-content-section {
  background: #FFFFFF;
  padding: 90px 0;
}

.content-tag {
  display: inline-block;
  background: #F4EDE4;
  color: #F97316;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.repair-content h2 {
  color: #082B44;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}

.repair-content p {
  color: #6B7280;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.repair-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.repair-features div {
  background: #FAF7F2;
  border: 1px solid #E5E7EB;
  padding: 16px;
  border-radius: 10px;
  color: #082B44;
  font-weight: 800;
}

.repair-features i {
  color: #F97316;
  margin-right: 8px;
}

.repair-visual-card {
  background: linear-gradient(135deg, #082B44, #0B3C5D);
  border-radius: 24px;
  padding: 70px 45px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 20px 50px rgba(8,43,68,.18);
}

.repair-visual-card i {
  width: 90px;
  height: 90px;
  background: #F97316;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: 28px;
}

.repair-visual-card h3 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
}

.repair-visual-card p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

@media(max-width:991px) {
  .repair-content h2 {
    font-size: 36px;
  }

  .repair-visual-card {
    padding: 50px 30px;
  }
}

@media(max-width:575px) {
  .repair-content-section {
    padding: 60px 0;
  }

  .repair-content h2 {
    font-size: 30px;
  }

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

  .repair-visual-card h3 {
    font-size: 26px;
  }
}

.repair-image-wrapper{
    position:relative;
}

.repair-image{
    width:100%;
    height:580px;
    object-fit:cover;
    border-radius:20px;
    display:block;
    box-shadow:0 20px 50px rgba(8,43,68,.12);
}

.repair-badge{
    position:absolute;
    bottom:25px;
    left:25px;

    background:#082B44;
    color:#fff;

    padding:22px 28px;

    border-radius:14px;

    box-shadow:0 15px 35px rgba(8,43,68,.20);
}

.repair-badge h4{
    color:#F97316;
    font-size:32px;
    font-weight:900;
    margin:0;
}

.repair-badge span{
    display:block;
    margin-top:6px;
    font-size:15px;
    font-weight:600;
    line-height:1.4;
}

/* Tablet */

@media(max-width:991px){

    .repair-image{
        height:450px;
    }

}

/* Mobile */

@media(max-width:576px){

    .repair-image{
        height:320px;
    }

    .repair-badge{
        left:15px;
        bottom:15px;
        padding:18px 22px;
    }

    .repair-badge h4{
        font-size:24px;
    }

}


/* end Smooth */

/* start Security */
.installation-section {
  background: white;
  padding: 90px 0;
}

.installation-image {
  position: relative;
}

.installation-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(8,43,68,.14);
}

.install-badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: #082B44;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(8,43,68,.25);
}

.install-badge i {
  width: 48px;
  height: 48px;
  background: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.install-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.install-badge span {
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.section-tag {
  display: inline-block;
  background: #FFFFFF;
  color: #F97316;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.installation-content h2 {
  color: #082B44;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.installation-content p {
  color: #6B7280;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.install-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 32px;
}

.install-points div {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  color: #082B44;
  font-weight: 800;
}

.install-points i {
  color: #F97316;
  margin-right: 8px;
}

@media(max-width:991px) {
  .installation-image img {
    height: 440px;
  }

  .installation-content h2 {
    font-size: 36px;
  }
}

@media(max-width:575px) {
  .installation-section {
    padding: 60px 0;
  }

  .installation-image img {
    height: 320px;
  }

  .install-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .installation-content h2 {
    font-size: 30px;
  }

  .install-points {
    grid-template-columns: 1fr;
  }
}

/*end Security */

/* start contact */

.contact-section {
  background: #FAF7F2;
  padding: 90px 0;
}

.contact-info,
.contact-form-box {
  height: 100%;
  border-radius: 22px;
}

.contact-info {
  background: #082B44;
  color: #FFFFFF;
  padding: 45px;
}

.contact-info span {
  color: #F97316;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin: 14px 0 18px;
}

.contact-info > p {
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  width: 48px;
  height: 48px;
  background: #F97316;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item small {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  color: #FFFFFF;
  font-weight: 800;
  margin: 0;
  text-decoration: none;
}

.contact-form-box {
  background: #FFFFFF;
  padding: 45px;
  box-shadow: 0 18px 45px rgba(8,43,68,.10);
}

.contact-form-box h3 {
  color: #082B44;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
}

.contact-form-box .form-control {
  height: 58px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 600;
}

.contact-form-box textarea.form-control {
  height: auto;
  padding-top: 18px;
}

.contact-form-box .form-control:focus {
  border-color: #F97316;
  box-shadow: none;
}

.contact-btn {
  background: #F97316;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 17px 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-btn:hover {
  background: #EA580C;
}

@media (max-width: 575px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-info,
  .contact-form-box {
    padding: 30px 22px;
  }

  .contact-info h2 {
    font-size: 30px;
  }
}

.estimate-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 0 18px;
  height: 58px;
  font-weight: 600;
  color: #2B2B2B;
  outline: none;
}

.estimate-form textarea {
  height: 130px;
  padding-top: 18px;
  resize: none;
  margin-bottom: 15px;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: #F97316;
}

.estimate-form button {
  width: 100%;
  background: #F97316;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 17px 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-form button:hover {
  background: #EA580C;
}

@media (max-width: 575px) {
  .estimate-form .form-row {
    grid-template-columns: 1fr;
  }
}



/* end contact */


/* start footer */


.footer-section{
    background:#082B44;
    padding:3px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    text-align:center;
}





.footer-social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:10px;
}

.footer-social a{
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#FFFFFF;
    font-size:18px;
    transition:.3s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#F97316;
    border-color:#F97316;
    transform:translateY(-3px);
}

.footer-bottom{
    color:rgba(255,255,255,.65);
    font-size:14px;
    padding-top:20px;
    
}
/* end footer */


/* start faq */
.faq-section {
  background: white;
  padding: 90px 0;
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto 45px;
}

.faq-heading span {
  color: #F97316;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-heading h2 {
  color: #082B44;
  font-size: 46px;
  font-weight: 900;
  margin: 10px 0 14px;
}

.faq-heading p {
  color: #6B7280;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.faq-accordion .accordion-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(8, 43, 68, 0.08);
}

.faq-accordion .accordion-button {
  background: #082B44;
  color: white;
  font-size: 18px;
  font-weight: 900;
  padding: 24px 28px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #082B44;
  color: #FFFFFF;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  background-color: #F97316;
  border-radius: 50%;
  background-position: center;
  padding: 14px;
}

.faq-accordion .accordion-body {
  color: black;
  font-size: 16px;
  line-height: 1.8;
  padding: 24px 28px;
  background: #FAF7F2;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 65px 0;
  }

  .faq-heading h2 {
    font-size: 34px;
  }

  .faq-heading p {
    font-size: 15px;
  }

  .faq-accordion .accordion-button {
    font-size: 16px;
    padding: 20px;
  }

  .faq-accordion .accordion-body {
    font-size: 15px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .faq-heading h2 {
    font-size: 28px;
  }

  .faq-accordion .accordion-button {
    font-size: 15px;
    line-height: 1.4;
  }
}




/* end faq */


/* start testimonials */
.testimonials-section {
  background: #FFFFFF;
  padding: 90px 0;
}

.testimonial-heading {
  max-width: 720px;
  margin: 0 auto 50px;
}

.testimonial-heading span {
  color: #F97316;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonial-heading h2 {
  color: #082B44;
  font-size: 46px;
  font-weight: 900;
  margin: 10px 0 14px;
}

.testimonial-heading p {
  color: #6B7280;
  font-size: 16px;
}

.testimonial-card {
  background: #FAF7F2;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 34px;
  height: 100%;
  box-shadow: 0 14px 35px rgba(8,43,68,.08);
}

.testimonial-card .stars {
  color: #F97316;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #2B2B2B;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFFFFF;
}

.client-info h5 {
  color: #082B44;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 4px;
}

.client-info span {
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 65px 0;
  }

  .testimonial-heading h2 {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 26px;
  }
}





/* end testimonials */


/* start offer */
.offer-section {
    padding: 100px 0;
    background: #FAF7F2;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.offer-box {
    background: radial-gradient(circle at top right, #114b75 0%, #082B44 100%);
    border-radius: 32px;
    padding: 70px 60px;
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px rgba(8, 43, 68, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Graphic Abstract Background Element */
.offer-box::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- Left Column Elements --- */
.offer-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(249, 115, 22, 0.15);
    color: #FF8A3D;
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.offer-box h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.offer-box h2 .highlight-text {
    color: #F97316;
    background: linear-gradient(to right, #F97316, #FF9042);
     background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.offer-description {
    font-size: 18px;
    color: #D1DFEC;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 35px;
}

/* Feature Checkmarks Layout */
.offer-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #FFF;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #F97316;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 900;
}

/* --- Right Column Coupon Elements --- */
.coupon-card-wrapper {
    position: relative;
    padding: 10px;
}

.coupon-box {
    background: #ffffff;
    border-radius: 24px;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Modern Graphic Ticket Cut-outs (Notches) */
.notch {
    content: "";
    width: 28px;
    height: 28px;
    background: #09324F; /* Dynamically matches the inner layout wall wrapper background */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.notch-left { left: -14px; }
.notch-right { right: -14px; }

.coupon-label {
    color: #8A99A8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 5px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.coupon-box h1.amount {
    font-size: 76px;
    color: #082B44;
    font-weight: 950;
    line-height: 1;
    margin: 0;
    letter-spacing: -2px;
}

.coupon-box span.discount-label {
    font-size: 28px;
    color: #F97316;
    font-weight: 900;
    margin-left: 4px;
}

/* Punch-card Divider Line */
.divider-line {
    border-top: 2px dashed #E2E8F0;
    margin: 20px 0;
    position: relative;
}

.coupon-box p.coupon-text {
    color: #4A5568;
    margin: 0 0 25px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* High Conversion CTA Button */
.btn-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #F97316;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(249, 115, 21, 0.3);
}

.btn-offer:hover {
    background: #EA580C;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(249, 115, 21, 0.45);
}

.btn-offer:active {
    transform: translateY(-1px);
}

/* --- Responsive Adjustments --- */
@media(max-width:1199px) {
    .offer-box h2 { font-size: 40px; }
}

@media(max-width:991px) {
    .offer-box { padding: 50px 40px; }
    .notch { background: #FAF7F2; } /* Matches section wrapper context color when stacked */
}

@media(max-width:767px) {
    .offer-section { padding: 60px 0; }
    .offer-box { padding: 40px 24px; border-radius: 24px; }
    .offer-box h2 { font-size: 32px; }
    .offer-description { font-size: 16px; }
    .offer-features { flex-direction: column; gap: 12px; }
    .feature-item { width: 100%; }
    .coupon-box h1.amount { font-size: 64px; }
}




/* end offer */


/* start enhance */
.opener-security-section {
  background: #FAF7F2;
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  background: #FFFFFF;
  color: #F97316;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.opener-content h2 {
  color: #082B44;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.opener-content p {
  color: #6B7280;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.opener-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.opener-features div {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  color: #082B44;
  font-weight: 800;
}

.opener-features i {
  color: #F97316;
  margin-right: 8px;
}

.opener-image {
  position: relative;
}

.opener-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(8,43,68,.14);
}

.opener-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #082B44;
  color: #FFFFFF;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.opener-badge i {
  width: 48px;
  height: 48px;
  background: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.opener-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.opener-badge span {
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

@media (max-width: 991px) {
  .opener-content h2 {
    font-size: 36px;
  }

  .opener-image img {
    height: 430px;
  }
}

@media (max-width: 575px) {
  .opener-security-section {
    padding: 60px 0;
  }

  .opener-content h2 {
    font-size: 30px;
  }

  .opener-features {
    grid-template-columns: 1fr;
  }

  .opener-image img {
    height: 320px;
  }
}


/* end enhance */



.area-list a {
  text-decoration: none;
}