/* ====================================
   CTA WRAPPER
==================================== */

.electrician-cta-wrapper{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:35px;

}

/* ====================================
   RIGHT SIDE CALL BOX
==================================== */

.electrician-call-info{

    background:#fff;

    border-radius:16px;

    padding:16px 22px;

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    border:1px solid #eee;

    transition:0.3s ease;

}

.electrician-call-info:hover{

    transform:translateY(-3px);

}

/* ICON */

.call-icon-box{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#fff4e5;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.call-icon-box i{

    font-size:30px;

    color:#222;

}

/* CONTENT */

.call-details span{

    display:block;

    color:#444;

    font-size:15px;

    margin-bottom:4px;

}

.call-details h3{

    margin:0;

    font-size:38px;

    line-height:1;

    font-weight:800;

    color:#000;

}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:991px){

    .electrician-cta-wrapper{

        flex-direction:column;

        align-items:flex-start;

    }

    .call-details h3{

        font-size:30px;

    }
    

}



@media(max-width:576px){

    .electrician-cta-wrapper{

        width:100%;

    }

    .electrician-call-info{

        width:100%;

        padding:14px 16px;

    }

    .call-icon-box{

        width:50px;
        height:50px;

    }

    .call-icon-box i{

        font-size:24px;

    }

    .call-details span{

        font-size:13px;

    }

    .call-details h3{

        font-size:24px;

    }

}

/* service  */

/* ===================================
   CONTACT NOW BUTTON
=================================== */

.service-contact-btn{

    margin-top:18px;

    width:100%;

    height:54px;

    background:red;

    color:#fff !important;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    text-transform:uppercase;

    transition:0.3s ease;

    box-shadow:
    0 8px 20px rgba(255,152,0,0.2);

}

/* ICON */

.service-contact-btn i{

    font-size:18px;

}

/* HOVER */

.service-contact-btn:hover{

    background:#e68900;

    transform:translateY(-2px);

    color:#fff !important;

}

/* MOBILE */

@media(max-width:767px){

    .service-contact-btn{

        height:50px;

        font-size:14px;

    }
    

}


.footer-call-box {
  position: relative;
  padding: 35px 0;
  background: transparent;
}
 
.footer-call-box__inner {
      background: linear-gradient(135deg, #000, #0f0f0f);
  border-radius: 15px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
 
.footer-call-content h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}
 
.footer-call-content p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}
 
.footer-call-button a {
  background: #d3222d;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 18px 35px;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s ease;
  animation: pulseCall 1.2s infinite;
  white-space: nowrap;
}
 
.footer-call-button-wa a {
  background: green;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 18px 35px;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s ease;
  animation: pulseCall 1.2s infinite;
  white-space: nowrap;
}
 
 
 
 
.footer-call-button a:hover {
  transform: translateY(-3px);
  color: #fff;
}
 
/* MOBILE */
 
@media (max-width: 991px) {
  .footer-call-box__inner {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
 
  .footer-call-content h2 {
    font-size: 26px;
  }
 
  .footer-call-button a {
    font-size: 20px;
    padding: 15px 22px;
  }
   
  .footer-call-button-wa a {
    font-size: 20px;
    padding: 15px 22px;
  }
 
}

@keyframes pulseCall {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.08);
}
100% {
    transform: scale(1);
}
}


/* ===================================
   HERO BUTTON GROUP
=================================== */

.hero-btn-group{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:30px;

}

/* ===================================
   COMMON BUTTON STYLE
=================================== */

.hero-btn-group .rr-secondary-btn{

    min-width:220px;

    text-align:center;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

}

/* CALL BUTTON */

.hero-call-btn{

    background:#ff0000 !important;

    color:#fff !important;

}

/* WHATSAPP BUTTON */

.hero-chat-btn{

    background:#25D366 !important;

    color:#fff !important;

}

/* HOVER EFFECT */

.hero-btn-group .rr-secondary-btn:hover{

    transform:translateY(-2px);

}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

    .hero-btn-group{

        gap:15px;

    }

    .hero-btn-group .rr-secondary-btn{

        min-width:200px;

    }

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:767px){

    .hero-btn-group{

        justify-content:center;

        flex-direction:column;

        align-items:center;

        width:100%;

    }

    .hero-btn-group .rr-secondary-btn{

        width:100%;

        max-width:320px;

        min-width:unset;

    }

}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:480px){

    .hero-btn-group .rr-secondary-btn{

        font-size:13px;

        padding:16px 20px;

    }

}




