body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    margin-top: 75px;
    font-style: normal;
}


.scroll-hide {overflow: hidden; }
html {scroll-behavior: smooth;}

html{
    margin-top: 0 !important;
}


.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/*----------------------Style----------------------*/

ol, ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.title-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0642a3;
}

.title-label::before,
.title-label::after{
  content: "";
  width: 25px;      
  height: 1px;
  border-radius: 999px;
  background: #0642a3;
  opacity: 0.95;
  transform: translateY(1px);
}

a{
    text-decoration: none;
}

ul li{
    font-family: "Montserrat", sans-serif;
}


h1, h2, h3, h4, h5{
    color: #002859;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    margin: 0;
}

h2{
    font-size: 27px;
    line-height: 43px;
    font-weight: 500;
}

h3{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

h4{
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

h5{
    font-size: 15px;
    line-height: 27px;
    font-weight: 600;

}

h5 span{
    display: block;
}

p{
    color: #455b73;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

p:not(:last-child){
    margin-bottom: 18px;
}

p:only-child {
    margin-bottom: 0;
}

/* ===== Header / Nav ===== */
.nav-icon{
  display:none;
  margin:0;
  width:30px;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div{
  background:#003980;
  border-radius:3px;
  content:"";
  display:block;
  height:2px;
  margin:8px 0;
  transition:all .3s ease-in-out;
}

.nav-icon.closed:before{
  transform:translateY(4px) translateX(-6px) rotate(130deg);
  width:18px;
}

.nav-icon.closed:after{
  transform:translateY(-4px) translateX(-6px) rotate(-130deg);
  width:18px;
}

.nav-menu{ 
    display:flex; 
    justify-content:end; 
}

.nav-menu > ul{
  display:flex;
  align-items:center;
  gap:25px;
  margin-right:25px;
}

.nav-menu li a{
  font-size: 14px;
  font-weight: 500;
  color:#003980;
  padding:0;
  letter-spacing:0.5px;
  font-family: "Montserrat", sans-serif;
}


.navigation{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}


.header-nav-container{
  width:100%;
  top:-150px;
  transition:top 1s;
  z-index:10000;
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:#FFF;
}

/* ===== Brands dropdown (desktop) ===== */
.nav-item--brands { 
  position: relative; 
}

.brands-dd {
  position: absolute;
  top: 100%;
  left: -20px;
  margin-top: 15px;
  background: #fff;
  padding: 20px 30px;
  z-index: 20000;
  display: none;
}

.nav-item--brands::after{
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 15px; 
}

.nav-item--brands:hover .brands-dd{
  display: block;
}

.brands-dd__list{
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 27px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brands-dd__list a{
  display:block;
  white-space:nowrap;
  padding: 10px 14px;
  font-size: 13px;
}

.brands-dd__list li{
  position: relative;
}

.brands-dd__list li:not(:nth-last-child(-n+2))::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -14px;      
  height:1px;
  background: rgba(0,0,0,.10);
}


/* ===== Brands modal (mobile) ===== */
.brands-modal{
  position: fixed;
  inset: 0;
  z-index: 30000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.brands-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.brands-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.brands-modal__panel{
  position: relative;
  margin: 9vh auto 0;
  width: min(760px, 92vw);
  max-height: 82vh;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.brands-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 23px;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
}

.brands-modal__head h3{
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #003980;
}

.brands-modal__close{
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #003980;
}

.brands-modal__body{
  padding: 20px;
  overflow: auto;
}

.brands-modal__body .brands-dd__list{
  grid-template-columns: repeat(2, minmax(70px, 1fr));
}

.nav-link--brands{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav-link--brands::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: -2px;
}

.why-us .title-block-left h3{
  margin-bottom: 0;
}


/*---------------------------button------------------------*/


a.btn-services,
.btn-call,
a.btn-schedule,
a.btn-head{
    background-color: #0642a3;
    border-radius: 10px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    display: block;
    width: 200px;
    max-width: 100%;
    padding: 15px 10px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.4px;
}

a.btn-read-more{
  display: inline-block;
  color:#0642a3 !important;
  margin-top: 30px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight:500;
  letter-spacing:.02em;
}
a.btn-read-more::after{ content:" →"; }
a.btn-read-more:hover{ opacity:.75; }

a.btn-schedule{
    color: #002859;
    background: transparent;
    border: 1px solid #002859;
}

a.btn-schedule:hover{
  background: #002859;
  border-color: #002859;
  color: #ffffff;
}

.btns-block{
    margin-top: 50px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btns-stick {
    width: 100%;
    background-color: #dbe5f3;
    padding: 15px 0;
    position: fixed;
    bottom: -76px;
    transition: bottom 0.5s ease-in-out;
    z-index: 777;
    display: none;
}

.btn-call.show {
    opacity: 1;
}

/*----------------------------hero-------------------------*/

.hero {
    position: relative;
    height: 520px;
    background: url('../image/hero.webp') no-repeat center top / cover;

}
  
.description-hero{
    border: 1px solid rgba(6,66,163,.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    box-shadow: 0px 0px 59px rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    padding: 45px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.description-hero span{
    color: #0642a3;
}
  

.description-hero h1{
    color: #002859;
    font-size: 32px;
    text-transform: revert;
    line-height: 43px;
    margin-bottom: 20px;
    padding-top: 0;
}

.description-hero p{
    font-size: 15px;
    font-weight: 400;
    color: #455b73;
    margin-bottom: 25px;
}


/*------------------------features--------------------*/

.features{
    padding: 140px 0 80px 0;
    background-color: #F7F9FC;
}

.general-container-features{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 100%;
}

h4 span{
    display: block;
}

.title-features{
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}


.title-features img{
    width: 56px;
    height: 56px;
}

/*----------------------services--------------------*/

.services{
    padding: 60px 0 100px 0;
}

.title-block{
    text-align: center;
}

.title-block-left h2,
.title-block h2{
    margin-bottom: 8px;
}

.title-block-left h3,
.title-block h3{
    margin-bottom:20px;
}


.item-title h3{
    margin: 25px 0;
}

.item-title h3 span{
    display: block;
}

.general-services-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    max-width: 100%;
    margin-top: 55px;
}

a.item-support {
    display: block;
    border-radius: 9px;
    background-color: #ffffff;
    text-align: center;
}


.pic-support picture,
.pic-support img {
    object-fit: cover;
    width: 100%;
    height: 190px;
    display: block;
    border-radius: 7px;
}


.item-title {
    position: relative;  
}


.item-title p::after {
    content: none;        
}

.item-title p{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  color: #0642a3;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border: 1px solid #0642a3;
  border-radius: 999px;
  transition: background-color .5s ease, color .2s ease, border-color .5s ease;
}

a.item-support:hover .item-title p,
a.item-support:focus-visible .item-title p{
  background: #0642a3;
  color: #ffffff;
  border-color: #0642a3;
}


/*------------------------welcome---------------------*/

.welcome{
    padding: 70px 0;
    background: #022041;
    background: linear-gradient(90deg,rgba(2, 32, 65, 1) 34%, rgba(247, 249, 252, 1) 34%);
}

.general-welcome-container{
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    align-items: center;
}


.pic-welcome picture,
.pic-welcome img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.block-description-welcome{
    text-align: center;
}

.block-description-welcome p{
    margin-top: 25px;
}

.list{
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 50px;
}

.item-list{
    display: flex;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
}


/*---------------------------why-us------------------------*/

.why-us{
    padding: 100px 0 70px 0;
}


.description-why-us p span{
    font-weight: 700;
}

.description-why-us{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 100px;
    align-items: center;
}


.general-container-why-us{
    margin-top: 60px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}

.item-why-us{
    position: relative;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.06);
    background: rgb(255, 255, 255);
}

.item-why-us::after {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 65%;
    height: 2px;
    background-color: #003980;
}

.item-title-why-us{
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* ===== Steps cards (solid + readable) ===== */

.how-it-work{
    padding: 50px 0 100px 0;
}

.general-instruction-container{
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
}
.item-step{
  position: relative;
  overflow: hidden;
  padding: 34px 36px;
  border-radius: 7px;
  box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
}

.item-step span{
display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgb(56 82 126);
}

.item-step h3{
  margin: 14px 0 10px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.item-step p{
  margin: 0;
  color: rgba(0,0,0,.68);
  line-height: 1.65;
}

.item-step::after{
  content:"";
  position:absolute;
  right: 16px;
  bottom: -10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  color: rgba(6, 66, 163, .06);
  pointer-events:none;
}

.general-instruction-container .item-step:nth-child(1)::after{ content:"01"; }
.general-instruction-container .item-step:nth-child(2)::after{ content:"02"; }
.general-instruction-container .item-step:nth-child(3)::after{ content:"03"; }



/*----------------------------Near Me---------------------------*/

.general-near-me-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    align-items: center;
    background-color: #F7F9FC;
}

.description-near-me{
    padding: 0 15px;
    max-width: 60%;
    margin: 0 auto;
}

.pic-near-me{
    height: 680px;
    background: url('../image/pic-near-me.webp') no-repeat center top / cover;
}

.parts .title-block,
.description-near-me .title-block{
    text-align: left;
    margin-bottom: 25px;
}

.parts .title-block h2,
.description-near-me .title-block h2{
    margin-bottom: 10px;
}

.pic-near-me{
    position: relative;
}

.pic-near-me img {
    height: 520px;
    position: relative;
    left: -12%;
    top: 12%;
}

.nearme-areas{
  color: #002859;
  font-size: 13px;
  line-height: 27px;
  font-weight: 600;
}
.nearme-note{
  margin: 10px 0 0;
  opacity: .78;
  font-size: 14px;
}


.nearme-divider{
  height: 1px;
  margin: 30px 0 15px;
  background: rgba(0,0,0,.10);
}

/*-------------------------brands------------------------*/

.brands{
    padding: 75px 0 100px 0;
}

.item-brands {
    max-width: 100%;
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.general-brands-container{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
}

.brands a.btn-read-more{
  display: table;
  margin: 40px auto 0;
}

.item-brands img{
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}


.line {
    border: 1px solid #ecf0f5;
    max-width: 1200px;
    margin: 0 auto;
}


/*---------------------------FAQ------------------------*/

.questions-and-schedule{
    padding: 90px 0 100px 0;
    background-color: #ecf1f7;
}

.questions-and-schedule-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 80px;
}

.faq-content {
    margin-top: 35px;
}

.title-FAQ h2{
    margin-bottom: 12px;
}

.faq-question {
    padding: 17px 0;
    max-width: 100%;
    border-bottom: 1px solid #d3d3d3;
    position: relative;
}

.faq-question:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question:first-child {
    padding-top: 0;
}

.panel-title {
    display: block;
    word-wrap: break-word;
    white-space: normal; 
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.7px;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0 0 0 40px;
    cursor: pointer;
    line-height: 30px;
}

.panel-content {
    font-size: 12px;
    font-weight: 400;
    color: #003980;
    line-height: 28px;
    margin: 0 40px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.panel:checked ~ .panel-content {
    max-height: 500px;
    opacity: 1;
    padding: 14px 10px;
}

.plus {
    position: absolute;
    color: #003980;
    font-weight: 300;
    margin-left: 10px;
    margin-top: -5px;
    z-index: 5;
    font-size: 38px;
    line-height: 100%;
    user-select: none;
    transition: transform 0.2s ease;
}

.panel:checked ~ .plus {
    transform: rotate(45deg);
}

.panel {
    display: none;
}

/*======================form-home==================*/

.block-form-head,
.block-form-home{
    padding: 40px 25px;
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
}

.block-form-home iframe{
    margin-top: -30px;
}

/*------------------------------Parts--------------------------*/

.general-customer-container,
.general-parts-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #003980;
    max-width: 100%;
    align-items: center;
}

.description-emergency .title-label,
.description-customer .title-label,
.description-parts .title-label{
  color:#7892bb;
}

.description-emergency .title-label::before,
.description-emergency .title-label::after,
.description-customer .title-label::before,
.description-customer .title-label::after,
.description-parts .title-label::before,
.description-parts .title-label::after{
  background:#7892bb;
}

.customer-divider{
  height: 1px;
  margin: 25px 0 21px;
  background: rgba(255, 255, 255, 0.12);
}

.customer-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,.82);
}

.customer-points li{
  position: relative;
    padding-left: 15px;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.customer-points li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7892bb;
  opacity: .9;
}

.description-customer p,
.description-customer h2,
.description-parts p,
.description-parts h2,
.description-parts h3{
    color: #ffffff;
}


.description-customer p,
.description-parts p{
    font-weight: 300;
}




.description-customer,
.description-parts{
    max-width: 60%;
    margin: 0 auto;
    padding: 0 15px;
}

.pic-parts{
    height: 580px;
    background: url('../image/parts-pic.jpeg') no-repeat center top / cover;
}


/*---------------------------customer-------------------------*/

.general-customer-container{
  background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,0)) , #022041;
}

.pic-customer picture,
.pic-customer img{
    width: 100%;
    object-fit: cover;
    display: block;
    height: 600px;
}

.description-customer h2{
    margin-bottom: 20px;
}



/*--------------------------emergancy--------------------------*/

.emergency{
  padding: 100px 0;
  background: linear-gradient(to top, #001a3b 0%, #002859 70%, #002859 100%);
}


.general-emergency-container{
    display: grid;
    gap: 90px;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}

.pic-emergency picture,
.pic-emergency img{
    width: 100%;
    display: block;
    height: 350px;
    object-fit: cover;
}

.description-emergency p{
    color: #ffffff;
}

.description-emergency h2{
    margin-bottom: 20px;
    color: #ffffff;
}

p.call-anytime a{
    color: #FFCD00;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}


/*--------------------blog---------------------*/

.blog{
    padding: 90px 0;
}

.general-blog-container{
    margin-top: 55px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}

.item-blog h4{
    margin-bottom: 5px;

}


.pic-blog picture,
.pic-blog img{
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
}


/*----------------------------footer--------------------------*/


.footer{
  background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,0)) , #022041;
  padding:70px 0 40px;
  color:#d3d3d3;
}


.general-footer-container{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:50px;
  max-width:100%;
}


.block-footer-social-icons{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:30px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#d3d3d3;
  font-size:14px;
  font-weight:300;
}

.footer-social svg{
  flex-shrink:0;
}

.footer-social span{
  font-weight:400;
}

.footer-social:hover span{
  color:#ffffff;
}

.links-footer-page h4,
.contacts-footer h4{
  color:#ffffff;
  margin:0 0 21px;
}


.links-footer li a,
.links-footer-contacts li,
.links-footer-contacts li a{
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
  font-size: 13px;
  letter-spacing: 1.2px;
  color:#ffffff;
  font-weight:200;
}


.links-footer li a:hover,
.links-footer-contacts li a:hover{
  color:#ffffff;
}


.links-footer-contacts span{
  font-weight:600;
  margin-right:6px;
}

ul.links-footer,
ul.links-footer-contacts{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.links-footer-contacts li{
  display: flex;
}


.links-footer-contacts li img{
    position: relative;
    top: 2px;
    margin-right: 10px;
    width: 17px;
    height: 17px;
}

.contacts-footer p {
    font-size: 13px;
    font-weight: 600;
    color: #d3d3d3;
    margin-top: 12px;
    line-height: 28px;
}


.line-footer{
    margin: 55px 0 34px;
    border-top: 1px solid #24425c;
}

.block-footer-social-icons p{
    margin-top: 8px;
    color: #73849f;
}

.copiright p{
  font-size:14px;
  text-align:center;
  margin:0 0 4px;
  color:#ffffff;
}


/*----------------------About Us Page-------------------*/

.intro-text-page{
  padding: 65px 0 100px 0;
  background-color: #F7F9FC;
}

picture,
img{
  display: block;
  object-fit: cover;
}

.intro-bg-page {
  position: relative;
  padding-top: 40px;
  overflow: visible;
  height: auto;
  min-height: 480px;  
  background-color: #F7F9FC;
  z-index: 1;
}

.intro-bg-page::before{
  content:"";
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 530px;
  background: linear-gradient(90deg, #081730 0%, #173d708c 55%, rgba(0,57,128,0) 100%);
  z-index:0;
  pointer-events:none;
}

.intro-page-pic{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height: 530px;
  overflow:hidden;
  z-index:-1;
}

.intro-page-pic picture,
.intro-page-pic img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.issues-media img{
  width: 100%;
  height: 540px;
  display: block;
  border-radius: 5px;
  object-fit: cover;
}

.general-title-page{
  position: relative;
  z-index: 7;
}

.block-form-head iframe{
  margin-top: -30px;
}

.block-form-head{
  position: relative;
  height: 485px;
}

.general-title-page h1{
  color: #ffffff;
  font-size: 45px;
  margin-bottom: 12px;
}

.general-title-page h3{
  color: #ffffff;
  line-height: 34px;
}

.general-container-head-inner{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  position: relative;
  z-index: 777;
}

.title-block-about{
  margin-top: 55px;
  padding-bottom: 50px;
}

.hero-badges{
  margin-top: 35px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 620px;
}

.hero-badge{
  flex: 1 1 240px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-badge span{
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge b{
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

/*===========intro-part-about====================*/

.container-intro-text-page{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  gap: 80px;
  align-items: center;
}

.general-features-inner-container{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  gap: 30px;
}

.item-title-contacts h3,
.item-title-features h3{
  margin: 15px 0 12px 0;
}

.intro-text-page-pic picture,
.intro-text-page-pic img{
  width: 100%;
  height: 600px;
}

.description-intro-text-page{
  text-align: center;
}

.brands .btns-block,
.description-intro-text-page .btns-block{
  margin-top: 40px;
}

.inner-features{
  padding: 80px 0 100px 0;
}


/* ===== Commercial Hero ===== */
.commercial-section{
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center; 
}

.commercial-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0,0,0,0.90) 15%,
    rgba(0,0,0,0.75) 30%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.commercial-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.commercial-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brands p{
  text-align: center;
  margin-top: 30px;
}

/*====================repair-coverage==================*/

.repair-coverage{
  padding: 80px 0;
  background: url('../image/coverage-bg.webp') no-repeat center top / cover;
}

.container-coverage{
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px 40px;
  max-width: 70%;
  text-align: center;
}

.block-general-coverage{
  display: flex;
  justify-content: center;
}

.container-coverage .btn-read-more{
  margin-top: 5px;
}

.location{
  padding: 90px 0 100px 0;
}

.service-areas-block{
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  gap: 30px;
}

.service-areas-block ul li{
  line-height: 39px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.issues-and-faq,
.general-lication-block{
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
}


ul li{
  color: #002859;
  font-size: 15px;
  letter-spacing: 0.7px;
}

.block-local-description .btns-block{
  justify-content: start;
  margin-top: 30px;
}

.block-local-description p{
  margin-top: 20px;
}

/*==================commercial================*/

.commercial-description {
    padding: 45px 35px;
    background-color: #ffffff;
    opacity: 0.9;
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.common-issues{
  margin-top: 25px;
}
.common-issues ol li{
  margin-bottom: 14px !important;
  color: #002859;
}

.block-full-width{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  align-items: center;
  background: #F7F9FC;
}

.commercial-refrigeration-issues{
  padding: 60px 0 100px 0;
  background: #F7F9FC;
}

/* .commercial-video{
    height: 670px;
} */

.block-full-width{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  align-items: center;
  background-color: #ecf1f7;
}

.commercial-kitchen-video video{
  max-width: 100%;
  object-fit: cover;
  display: block;
  height: 700px;
}

.general-commercial-laundry-repair,
.general-commercial-vent-hood-repair,
.description-commercial-kitchen-repair{
  padding: 0 15px;
  max-width: 70%;
  margin: 0 auto;
}

.brands-supported{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(12,22,38,0.12);
}

.brands-supported p{
  margin: 0;
  line-height: 1.6;
}

.commercial-vent-hood{
  background: url('../image/vent-hood-bg.webp') no-repeat center top / cover;
  height: 650px;
}

.commercial-laundry-pic{
  background: url('../image/commercial-laundry-bg.webp') no-repeat center top / cover;
  height: 650px;
}

/*=================Schedule Page=============*/

.contact-page-information{
  padding: 70px 0 90px 0;
  background-color: #F7F9FC;
}

.general-container-contact-info{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
}

ul.contacts-info{
  color: #455b73;
  line-height: 30px;
}

ul.contacts-info li{
  font-size: 14px;
  font-weight: 400;
}

.support-line{
  font-size: 12px;
  font-weight: 600;
  line-height: 21px;
  margin-top: 5px;
}

.item-information-contacts{
  background-color: #ffffff;
  padding: 30px 35px;
  box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.04);
}

.page-services-container{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}



.page-services-container .pic-blog img{
  display: block;
  width: 100%;
  height: auto;
}


/*------------------------CONTENT PAGE-------------------------*/

.content{
  background-color:#F9F9F9;
  padding-bottom:70px;
}

.content h1{
  padding: 45px 0 25px 0;
  font-size:32px;
}

.content .entry-content > h2{
  margin:35px 0 15px 0;
  line-height:34px;
}


.content .entry-content > ol > li span{
  font-family:"Oswald", sans-serif;
  font-weight:700;
}

/* ================================
   POST IMAGES (clean & safe)
   ================================ */

/* A) Featured image (Gutenberg: wp-block-post-featured-image) */
.content figure.wp-block-post-featured-image,
.content .wp-block-post-featured-image{
  margin: 0 0 30px;
}

.content figure.wp-block-post-featured-image img,
.content .wp-block-post-featured-image img{
  display: block;
  width: 100% !important;
  height: 350px;            /* меняй высоту обложки */
  object-fit: cover;
  border-radius: 7px;
}

/* B) Featured image / thumbnails that you output as .pic-blog (cards, archives, etc.) */
.content .pic-blog img{
  display: block;
  width: 100% !important;
  height: 350px;            /* можешь сделать 230px для карточек, если надо */
  object-fit: cover;
  border-radius: 7px;
}

/* C) Images inside post content (only direct text images, not random icons/logos) */
.content .entry-content > figure.wp-block-image img,
.content .entry-content > figure.wp-block-image > a > img,
.content .entry-content > p > img,
.content .entry-content > p > a > img{
  display: block;
  width: 100% !important;   /* перебивает inline resize из редактора */
  max-width: 100% !important;
  height: 350px;            /* если не хочешь обрезку — напиши, сделаю auto */
  object-fit: cover;
  border-radius: 7px;
  margin: 0 0 30px;
}

/* D) Don’t crop brand/logo grids */
.content .entry-content .general-brands-container img,
.content .entry-content .item-brands img{
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0;
  margin: 0;
}

/* E) Hide captions */
.content .entry-content figcaption,
.content .entry-content .wp-element-caption{
  display: none !important;
}

.content .entry-content > ol,
.content .entry-content > ul{
  margin:30px 0;
}

/* UL — только элементы верхнего уровня */
.content .entry-content > ul > li{
  display:block;
  padding:15px 17px;
  line-height:25px;
  font-size:14px;
  font-weight:500;
}

.content .entry-content > ul > li:nth-of-type(odd){
  background:#eff1f5;
}

/* ссылки в UL — тоже только верхнего уровня */
.content .entry-content > ul > li > a{
  color:#0642a3;
  font-weight:500;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:0.5px;
  font-family:"Oswald", sans-serif;
}

/* ===== Таблицы только внутри entry-content ===== */
.content .entry-content table{
  width:100%;
  border-collapse:collapse;
  margin-top:35px;
}

.content .entry-content tr:nth-of-type(odd){
  background:#e9ecf3;
}

.content .entry-content th{
  background-color:#002859;
  color:#fff;
  font-weight:600;
  padding:20px 15px;
  text-transform:uppercase;
  letter-spacing:0.7px;
}

.content .entry-content td,
.content .entry-content th{
  border:1px solid #dfdfdf;
  text-align:left;
  font-size:18px;
  padding:20px 15px;
}

.content .entry-content td{
  color:#002859;
}

.content .entry-content > ol{
  background-color:#fff;
  padding:35px 30px;
  padding-left:55px;
  border-radius:10px;
  box-shadow:0 0 34px rgba(0,0,0,0.07);

  margin-bottom:20px;

  list-style:decimal;
  list-style-position:outside;
}

.content .entry-content > ol > li{
  color:#455b73;
  line-height:28px;
  font-size:14px;
  letter-spacing:0.4px;
  font-family:"Montserrat", sans-serif;
  margin:0;
}

.content .entry-content > ol > li:not(:last-child){
  margin-bottom:15px;
}

.content .entry-content > ol > li::marker{
  font-weight:600;
  color:#455b73;
}

/* ===== Responsive table (только внутри entry-content) ===== */
@media only screen and (max-width:760px),
(min-device-width:768px) and (max-device-width:1024px){

  .content .entry-content table{
    width:100%;
  }

  .content .entry-content table,
  .content .entry-content thead,
  .content .entry-content tbody,
  .content .entry-content th,
  .content .entry-content td,
  .content .entry-content tr{
    display:block;
  }

  .content .entry-content thead tr{
    position:absolute;
    top:-9999px;
    left:-9999px;
  }

  .content .entry-content tr{
    border:1px solid #e9ecf3;
  }

  .content .entry-content td{
    border:none;
    border-bottom:1px solid #e9ecf3;
    position:relative;
    padding-left:50%;
  }

  .content .entry-content td:before{
    position:absolute;
    top:20px;
    left:15px;
    width:45%;
    padding-right:10px;
    white-space:nowrap;
    content:attr(data-column);
    color:#000;
    font-weight:bold;
  }
}

p a{
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #0642a3;
}

/*====================inner-category-page-style=================*/

.page-inner{
  padding: 45px 0 90px 0;
  background-color: #F7F9FC;
}

.page-services-container{
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}

.item-post-inner-page{
  padding: 10px;
  background-color: #ffffff;
}

.pic-blog img{
  border-radius: 7px;
}

.title-post-block{
  margin: 20px 15px;
  text-align: center;
}

.title-post-block h3{
  margin-bottom: 8px;
}


.item-post-inner-page .title-post-block{
  position: relative;
}

.item-post-inner-page .title-post-block::after {
    content: "READ MORE";
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #0642a3;
    letter-spacing: 0.7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 23px;
    border: 1px solid #0642a3;
    border-radius: 999px;
    margin-top: 12px;
    transition: background-color .5s ease, color .2s ease, border-color .5s ease;
}

.item-post-inner-page:hover .title-post-block::after{
  background-color: #0642a3;
  color: #ffffff;
  border-color: #0642a3;
}


.issues-custom h2{
  margin-bottom: 20px;
}

.issues-media img{
  height: 450px;
}

/* Только issues1: вертикально центрируем две колонки */
.commercial-refrigeration-issues.issues1 .issues-and-faq{
  padding-top: 40px;
  align-items: center;
}

.description-customer .btns-block{
  justify-content: start;
}

.description-customer .btn-schedule{
  border: 1px solid#ffffff;
  color: #ffffff;
}

/*--------------------------------------media---------------------------------*/

/* ===== Media ≤1024 ===== */


@media (max-width:1024px){

  .all-informations-container{ order: 2; }

  .all-informations-container h3{ text-align: center; }

  .schedule{ padding: 65px 0; }

  .tittle-contacts h1{
    text-transform: uppercase;
    text-align: center;
    padding: 60px 0 30px 0;
    font-size: 39px;
    line-height: 45px;
  }

  .schedule-container{
    text-align: center;
    padding: 45px 25px;
    background-color: #ffffff;
  }

  .description-schedule p{ margin-bottom: 30px; }

  .block-btn-contacts p{ margin: 10px 0; }

  .general-container-offices{
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .offices{ padding: 50px 0; }

  .general-services-contacts{
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .block-pic-services-contacts{ order: 2; }

  .services-contacts{ padding: 50px 0; }

  .pic-contact-services picture, .pic-contact-services img{
    width: 390px;
    height: 370px;
  }

  .pic-customer picture, .pic-customer img{ height: 300px; }

  .general-info-container{
    gap: 30px;
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }

  .map-contacts{ height: 350px; }

  .nav-icon{ display: block; }

  .logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    width: 100%;
  }

  .nav-menu{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #003980;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: -100%;
    gap: 45px;
    left: 0;
    transition: all 0.4s ease-in-out;
    opacity: 0;
  }

  .nav-menu li a{
    font-size: 18px;
    font-weight: 500;
    color: #003980;
  }

  .nav-menu > ul{
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }

  .nav-menu.active{
    top: 0;
    z-index: 999;
    opacity: 1;
    background-color: #FFF;
  }

  /*=======modal=======*/
  .nav-item--brands:hover .brands-dd{ 
    display:none; 
  }
  .brands-dd{ 
    display:none; 
  }

  .brands-dd__list a {
    padding: 3px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #002859;
  }
  
  .general-container-features{
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .title-features{
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
  }

  .item-features{ text-align: center; }

  .general-welcome-container{
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .welcome{
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(2, 32, 65, 1) 34%, rgba(247, 249, 252, 1) 34%);
  }

  .why-us{ padding: 50px 0; }

  .description-why-us{
    text-align: center;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .title-block-why-us h2{ margin-bottom: 8px; }

  .general-container-why-us{
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }

  .btns-block{ margin-top: 40px; }

  .general-near-me-container{ grid-template-columns: 1fr; }

  .description-near-me{
    max-width: 100%;
    text-align: center;
    order: 2;
    padding: 40px 15px 60px 15px;
  }

  .parts .title-block, .description-near-me .title-block{
    text-align: center;
    margin-bottom: 8px;
  }

  .pic-near-me img{
    left: 18%;
    top: 2%;
    height: 335px;
  }

  .how-it-work{ padding: 35px 0 80px 0; }

  .btns-block{
    margin-top: 35px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pic-near-me{ height: 350px; }

  .brands{ padding: 50px 0; }

  .questions-and-schedule{
    padding: 50px 0 70px 0;
    background-color: #F7F9FC;
  }

  .faq-cont{
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }

  .faq{ margin-bottom: 60px; }

  .general-customer-container, .general-parts-container{
    grid-template-columns: 1fr;
  }

  .description-customer, .description-parts{
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 15px 60px 15px;
    order: 2;
    text-align: center;
  }

  .pic-parts, .pic-customer{ height: 300px; }

  .general-reviews-container{
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .item-reviews{ text-align: center; }

  .general-emergency-container{
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .description-emergency{ text-align: center; }

  
  .emergency,
  .blog{
    padding: 60px 0;
  }

  .services{
    padding: 40px 0 60px 0;
  }

  .pic-welcome picture, .pic-welcome img{ height: 350px; }

  .features{ padding: 120px 0 40px 0; }

  .title-block h2{ margin-bottom: 8px; }

  .questions-and-schedule-container{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .general-instruction-container{
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .customer-points{
    justify-content: center;
    text-align: center;
    gap: 15px;
  }

  .general-container-why-us{ grid-template-columns: 1fr; }
  .general-blog-container {
      margin-top: 45px;
      gap: 40px;
      grid-template-columns: 1fr;
    }

    .item-title h3 {
        margin: 15px 0;
    }

  .general-container-head-inner {

    grid-template-columns: 1fr;
    gap: 50px;
  }

  .general-title-page h1{
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 9px;
  }

  .hero-badges {
    margin-top: 30px;
  }

  .title-block-about {
    margin-top: 20px;
    padding-bottom: 0;
  }

  .intro-bg-page::before {
    height: 700px;;
    background: rgba(8,23,48,0.72);
  }

  .container-intro-text-page{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro-text-page-pic picture, .intro-text-page-pic img {
    height: 300px;
  }

  .brands .btns-block, .description-intro-text-page .btns-block {
    margin-top: 30px;
  }

  .intro-text-page {
    padding: 50px 0 60px 0;
    background-color: #F7F9FC;
  }

  .inner-features{
    padding: 50px 0 70px 0;
  }

  .general-features-inner-container {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .item-features-inner{
    flex-direction: column;
    text-align: center;
  }

  .item-title-features{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .block-full-width{
    grid-template-columns: 1fr;
  }
  .general-commercial-kitchen-repair{
    order: 2;
  }

  .commercial-kitchen-video,
  .commercial-kitchen-video video{
    height: 300px;
    width: 100%;
  }

  .general-commercial-laundry-repair, .general-commercial-vent-hood-repair, .description-commercial-kitchen-repair{
    padding: 30px 15px 50px 15px;
    max-width: 100%;
    text-align: center;
  }

  .commercial-laundry-pic,
  .commercial-vent-hood {
    height: 300px;
  }

  .commercial-laundry-pic{
    order: 1;
  }
  .general-commercial-laundry-repair{
    order: 2;
  }

  .location {
    padding: 50px 0;
  }

  .block-local-description{
    text-align: center;
  }

  .service-areas-block {
    gap: 20px;
  }

  .intro-page-pic {
    height: 700px;
  }

  .commercial-section {
    padding: 50px 0;
  }
  .repair-coverage {
    padding: 50px 0;
  }

  .general-container-contact-info {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .item-information-contacts {
    padding: 20px 25px;
  }

  .contact-page-information {
    padding: 50px 0 60px 0;
  }

}


@media screen and (max-device-width: 768px) and (min-device-width: 360px){

  .commercial-refrigeration-issues.issues1 .issues-and-faq {
    gap: 30px;
  }

  .content .entry-content > h2 {
    margin: 34px 0 14px 0;
  }

  .content .entry-content > figure img,
  .content .entry-content > p > img,
  .content .entry-content > picture,
  .content .entry-content > img{
    height: 300px;
    margin-bottom: 30px;
  }

  .general-services-container{
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-top: 40px;
  }

  .general-container-features{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .btns-block{
    flex-direction: column;
    align-items: center;
  }

  .general-container-why-us{ grid-template-columns: 1fr; }

  .tittle-contacts h1{
    font-size: 32px;
    line-height: 41px;
    padding: 50px 0 30px 0;
  }

  .tittle-contacts h1 span{
    font-size: 23px;
    line-height: 37px;
  }

  .description-hero h1{
    font-size: 27px;
    line-height: 43px;
    margin-bottom: 15px;
  }

  h2{
    font-size: 23px;
    line-height: 36px;
  }

  h3{
    font-size: 16px;
    line-height: 29px;
  }

  .block-description-welcome p{ margin-top: 16px; }

  .title-FAQ h2{ margin-bottom: 12px; }

  .description-customer h2{ margin-bottom: 15px; }

  .why-us{ padding: 50px 0 65px 0; }

  .general-footer-container{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .commercial-description {
      padding: 35px 20px;
      max-width: 90%;
  }

  .issues-and-faq, .general-lication-block {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .commercial-refrigeration-issues {
    padding: 50px 0;
  }

  .general-brands-container {
    margin-top: 30px;
  }
  .line-footer {
    margin: 25px 0;
  }

  .footer {
    padding: 50px 0 25px;
  }

  .container-coverage {
    padding: 35px 25px;
    max-width: 90%;
  }

  .block-form-head, .block-form-home {
    padding: 40px 7px;
    height: 515px;
  }

  .block-form-home{
    height: 600px;
  }

  .content ol {
    padding: 25px 20px;
    padding-left: 37px;
  }

  .issues-media img {
    height: 300px;
  }

}

@media screen and (max-device-width: 650px) and (min-device-width: 360px){

  .description-hero{
    padding: 40px 25px;
    max-width: 75%;
  }

  .pic-near-me img{
    position: relative;
    left: 0%;
    height: 340px;
  }

  .welcome{
    padding: 60px 0 50px 0;;
    background: linear-gradient(180deg, rgba(2, 32, 65, 1) 25%, rgba(247, 249, 252, 1) 25%);
  }

  .list{
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }
}


