@charset "utf-8";
/* CSS Document */
.plan-body.single-services-list-fetur {
    display: flex;
    gap: 40px; /* spacing between columns */
    align-items: flex-start; /* ensures both columns align at the top */
}

.plan-body.single-services-list-fetur ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1; /* makes both columns equal width */
}

@media (max-width: 768px) {
    .plan-body.single-services-list-fetur {
        flex-direction: column;
    }
}

.homepage-action-bar {
    background: #575d5e;
    padding: 18px 0;
}

.homepage-action-bar .action-btn {
    display: block;
    background: #353030;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    letter-spacing: 0.3px;
}

/* Hover effect */
.homepage-action-bar .action-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Mobile improvements */
@media (max-width: 767px) {
    .homepage-action-bar .action-btn {
        margin-bottom: 10px;
        font-size: 16px;
        padding: 16px 20px;
    }
}


.homepage-action-bar2 {
    background: #1d1d1a;
    padding: 18px 0;
}

.homepage-action-bar2 .action-btn {
    display: block;
    background: #1d1d1a;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    letter-spacing: 0.3px;
}

/* Hover effect */
.homepage-action-bar2 .action-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Mobile improvements */
@media (max-width: 767px) {
    .homepage-action-bar2 .action-btn {
        margin-bottom: 10px;
        font-size: 16px;
        padding: 16px 20px;
    }
}

.pricing-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.pricing-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.tagline {
    font-size: 14px;
    font-weight: 600;
    color: #005bbb;
    letter-spacing: 1px;
}

.title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
}

.subtitle {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

/* Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    font-size: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
}

.toggle-label.active {
    opacity: 1;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    display: none;
}

.toggle-switch label {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-switch label::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background: #005bbb;
}

.toggle-switch input:checked + label::after {
    left: 26px;
}

/* Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.featured {
    border: 2px solid #005bbb;
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #005bbb;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
}

.plan-price {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
    display: none;
}

.plan-price span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* Features */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}

.icon {
    color: #005bbb;
    font-weight: bold;
}

/* Button */
.btn-primary {
    display: block;
    text-align: center;
    background: #005bbb;
    color: #fff;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #004999;
}

.plan-price {
    display: none;
}

.plan-price.active {
    display: block;
}

.why-choose-us {
    padding: 70px 0;
}

.why-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #005bbb;
}

.why-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 15px;
    color: #555;
}

.reviews-section {
    padding: 70px 0;
}

.reviews-widget-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
}

.reviews-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

.reviews-btn {
    display: inline-block;
    background: #005bbb;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.reviews-btn:hover {
    background: #004999;
}

.brands-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    gap: 60px;
    width: calc(250px * 12); /* 4 logos × 3 loops */
    animation: scrollBrands 25s linear infinite;
}

.brands-track img {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: 0.3s;
}

.brands-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* Boiler Service Advantages – 2026 Block */
.boiler-service-advantages {
  background: #f7f7f7;
  padding: 40px 25px;
  border-radius: 8px;
  margin: 40px 0;
}

.boiler-service-advantages h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.boiler-service-advantages p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.boiler-service-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.boiler-service-advantages ul li {
  background: #ffffff;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-left: 4px solid #0077cc;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.boiler-service-advantages ul li strong {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
  color: #000;
}

.service-checklist {
  margin: 50px 0;
}

.why-choose {
  background: #eef6ff;
  padding: 40px 25px;
  border-radius: 8px;
  margin: 50px 0;
}

.why-choose h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
}

.why-choose ul li {
  padding: 10px 0;
  font-size: 17px;
  border-bottom: 1px solid #d7e7f7;
}


.service-checklist h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.check-item {
  background: #f7f7f7;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 16px;
  border-left: 4px solid #0077cc;
}

.boiler-signs {
  margin: 50px 0;
}

.boiler-signs h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.boiler-signs ul {
  list-style: disc;
  padding-left: 25px;
}

.boiler-signs ul li {
  margin-bottom: 10px;
  font-size: 17px;
}

.prepare-service {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 8px;
  margin: 50px 0;
}

.prepare-service h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.prepare-service ul {
  padding-left: 20px;
  list-style: disc;
}

.prepare-service ul li {
  margin-bottom: 10px;
  font-size: 17px;
}

.cta-service {
  background: #0077cc;
  color: #fff;
  padding: 50px 25px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
}

.cta-service h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.cta-service p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-btn {
  background: #fff;
  color: #0077cc;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.cta-btn:hover {
  background: #e6e6e6;
}

.quote-form-2026 {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
}

.quote-form-2026 h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.quote-form-2026 .intro-text {
    font-size: 17px;
    margin-bottom: 25px;
    color: #444;
}

.form-block {
    margin-bottom: 30px;
}

.form-block label {
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.small-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.quote-form-2026 input,
.quote-form-2026 select,
.quote-form-2026 textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 15px;
    background: #fff;
}

.three-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.quote-submit {
    background: #0077cc;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.quote-submit:hover {
    background: #005fa3;
}

.thankyou-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.thankyou-card {
    background: #ffffff;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.thankyou-card h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.thankyou-card p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.thankyou-buttons {
    margin-bottom: 25px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    margin: 5px;
    transition: 0.2s ease;
}

.btn-primary {
    background: #80cd0c;
    color: #fff;
}

.btn-primary:hover {
    background: #005fa3;
}

.btn-secondary {
    background: #e9eef5;
    color: #333;
}

.btn-secondary:hover {
    background: #d8e2ee;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
    color: #444;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    width: 140px;
}

.trust-icon svg {
    display: block;
    margin: 0 auto 10px;
    opacity: 0.9;
    transition: 0.2s;
}

.trust-icon svg:hover {
    opacity: 1;
}

.trust-item p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}


.what-next {
    background: #f7f7f7;
    padding: 35px 25px;
    border-radius: 10px;
    margin: 50px 0;
}

.what-next h2 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.what-next ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-next ul li {
    padding: 10px 0;
    font-size: 17px;
    border-bottom: 1px solid #e0e0e0;
}

.what-next ul li:last-child {
    border-bottom: none;
}


.trust-item img {
    height: 50px;
    margin-bottom: 10px;
    opacity: 0.9;
    transition: 0.2s;
}

.trust-item img:hover {
    opacity: 1;
}

.trust-item p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}








	
	
	