:root {
  --red: #e73024;
  --red-dark: #c9241a;
  --navy: #132a4e;
  --navy-light: #1c3a68;
  --main-blue: #003b6f;
  --cream: #f8f6f2;
  --gold: #c9a13b;
  --gold-light: #e0bd63;
  --text-dark: #1b2430;
  --text-muted: #5a6472;
  --white: #ffffff;
  --radius: 10px;
  --max-w: 1180px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --navy-bg: #003b70;
  --card-empty: #3c5a80;
  --white: #ffffff;
  --orange: #d72c28;
  --text-dark: #1e2a3a;
  --text-muted: #5b6b80;
  --text-light: #dfe6ef;
  --name-color: #2451a3;

  --section-py: clamp(48px, 6vw, 96px);
  --section-px: clamp(20px, 5vw, 80px);
  --gap: clamp(16px, 2vw, 24px);
  --radius-card: 4px;
  --para: #cbcbcb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}
.container {
  max-width: var(--max-w);
  margin: auto;
  width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
}
p {
  font-size: 17px;
  line-height: 25px;
  color: #222;
  margin-bottom: 30px;
  text-align: justify;
}
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  padding: 0.85em 1.6em;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.45em 1.1em;
  border-radius: 30px;
  margin-bottom: 1em;
}

/*========================
        HEADER
=========================*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.site-header .container {
  max-width: var(--max-w);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.logo {
  width: 170px;
}
.logo img {
  width: 100%;
  display: block;
}

/* Navigation */

.main-nav {
  padding-left: 50px;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: left;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--red);
}

/* Call Button */

.side-button {
  flex: 0 0 210px;
}

.side-button .btn {
  display: block;
  text-align: center;
  width: 100%;
}

/* Hamburger */

.menu-toggle,
.close-menu {
  display: none;
}

/*========================
      Tablet
=========================*/

@media (max-width: 1100px) {
  .logo {
    flex-basis: 150px;
  }

  .main-nav ul {
    gap: 18px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .side-button {
    flex-basis: 180px;
  }

  .side-button .btn {
    font-size: 14px;
  }
}

/*========================
      Mobile
=========================*/

/*==============================
Hero Banner
==============================*/

.hero-banner {
  position: relative;
  width: 100%;
  height: 650px;
  background: url("../img/banner-hero.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
}

/* Light Transparent Strip */

/* Content */
.hero-content {
  text-align: center;
  background: #0000001c;
  padding: 50px 0px;
}

/* Heading */
.hero-content h1 {
  font-size: 55px;
  line-height: 1.08;
  color: #fff;
  font-weight: 700;
  margin-bottom: 35px;
  text-shadow: 0 5px 10px rgb(0 0 0 / 79%);
}

/* Blue Box */
.hero-info-box {
  max-width: 950px;
  margin: auto;
  background: var(--main-blue);
  border-radius: 18px;
  padding: 28px 45px;
}

.hero-info-box p {
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
}

/*==============================
Responsive
==============================*/

@media (max-width: 1200px) {
  .hero-banner {
    height: 580px;
  }

  .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 992px) {
  .hero-banner {
    height: 520px;
  }

  .hero-overlay {
    height: 90px;
    top: 40px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-info-box {
    padding: 25px;
  }

  .hero-info-box p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: auto;
    padding: 40px 20px 40px;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
    margin-bottom: 25px;
  }

  .hero-info-box {
    padding: 20px;
    border-radius: 12px;
  }

  .hero-info-box p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-info-box p {
    font-size: 15px;
  }
}

/*==========================
ABOUT PLUMBER
==========================*/

.about-plumber {
  position: relative;
  padding: 90px 0;
  background: #fdfaf8;
  overflow: hidden;
}

.about-plumber::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/about-background.webp") center center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.about-plumber .container {
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.about-left {
  width: 46%;
}

.about-right {
  width: 57%;
  background: #fff;
  border-radius: 25px;
  padding: 20px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Badge */

.about-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 14px;

  line-height: 1.2;
  font-weight: 600;
}

/* Heading */

.about-left h2 {
  font-size: 55px;
  color: #1e3f7a;

  font-weight: 700;
  margin: 10px 0px;
}

.about-left h3 {
  font-size: 28px;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 700;
}

.about-left h3 span {
  display: inline-block;
  margin-top: 5px;
  font-size: 33px;
  font-weight: 600;
}

.about-left p {
  font-size: 17px;
  line-height: 25px;
  color: #222;
  margin-bottom: 30px;
  text-align: justify;
}

.about-left strong {
  font-weight: 700;
}

/* Right Box */

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid #ef574d;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 240px;
}

.icon {
  font-size: 32px;
}

.feature-title h4 {
  font-size: 26px;
  color: #222;
  font-weight: 500;
  margin: 0;
}

.feature-item p {
  color: #555;

  margin: 0;
}

.price-list p {
  margin-bottom: 8px;
  color: #222;
}

.price-list p:last-child {
  margin-bottom: 0;
}

/*==========================
Responsive
==========================*/

@media (max-width: 991px) {
  .about-plumber .container {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

  .about-left h2 {
    font-size: 48px;
  }

  .about-left h3 span {
    font-size: 42px;
  }

  .feature-item {
    flex-direction: column;
    gap: 20px;
  }

  .feature-title {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-plumber {
    padding: 70px 0;
  }

  .about-left h2 {
    font-size: 38px;
  }

  .about-left h3 {
    font-size: 24px;
  }

  .about-left h3 span {
    font-size: 34px;
  }

  .about-left p {
    font-size: 17px;
  }

  .feature-title h4 {
    font-size: 24px;
  }

  .feature-item p {
    font-size: 16px;
  }

  .about-badge {
    font-size: 15px;
  }
}
/* testimoninal  */

.testimonials {
  background: var(--navy-bg);
}
.testimonials .container {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  overflow: hidden;
}

.testimonials--google {
  padding: 56px 0;
  background: #fff;
}

.testimonials--google .container {
  display: block;
  overflow: visible;
}

/* ---------- Left copy column ---------- */
.testimonials__intro {
  flex: 1 1 380px;
  min-width: 280px;
}

.testimonials__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.testimonials__title {
  color: var(--white);

  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-size: 55px;
}

.testimonials__subtitle {
  color: var(--text-light);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Static two-column card grid ---------- */
.testimonials__columns {
  flex: 1 1 500px;
  display: flex;
  gap: var(--gap);
}

.testimonials__col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* second column starts lower, exactly like the reference stagger */
.testimonials__col--offset {
  margin-top: clamp(40px, 6vw, 64px);
}

/* ---------- Card ---------- */
.review-card {
  background: var(--white);

  padding: clamp(18px, 2vw, 24px);
}

.review-card__quote-icon {
  color: #ff1b00;
  font-size: 75px;
  font-weight: 700;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-card__text {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 clamp(16px, 2vw, 20px);
  text-align: left;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--card-empty);
}

.review-card__name {
  color: var(--name-color);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.review-card__role {
  color: var(--text-muted);
  font-size: 15px;
  margin: 2px 0 0;
  text-align: left;
}

/* Plain blue placeholder blocks, cut off at top/bottom exactly like the screenshot */
.review-card--empty {
  background: var(--card-empty);
  min-height: 180px;
}

.review-card--empty.review-card--short {
  min-height: 70px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials__columns {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .testimonials__columns {
    flex-direction: column;
  }
  .testimonials__col--offset {
    margin-top: 0;
  }
}

/*======================================
Emergency Services
======================================*/

.emergency-services {
  padding: 90px 0;
  background: #fff;
}

.emergency-services .container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

/* Heading */

.service-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.service-heading h2 {
  font-size: 45px;
  font-weight: 300;
  color: #173f80;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.service-btn {
  width: 260px;
  height: 57px;
  background-color: var(--orange);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: underline;
}

.service-btn:hover {
  background: #a93127;
}

/* Service Box */

.service-box {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  border-top: 1px solid #d8d8d8;
}

.service-content {
  padding: 35px 60px 35px 0px;
}

.service-content h3 {
  font-size: 34px;
  color: #1f1f1f;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.service-content .icon {
  font-size: 30px;
}
.service-content p {
  line-height: 1.75;
  color: #555;
  margin-bottom: 15px;
}

.service-link {
  display: inline-flex;
  flex-direction: column;
  color: #111;
  font-size: 17px;
  font-weight: 700;
  text-decoration: underline;
  gap: 8px;
}

.service-link span {
  font-size: 22px;
}
/* Image */

.service-image {
  overflow: hidden;
  height: 90%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.service-box:hover img {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 1200px) {
  .service-heading h2 {
    font-size: 48px;
  }

  .service-content h3 {
    font-size: 42px;
  }

  .service-content p {
    font-size: 22px;
  }

  .service-btn {
    width: 220px;
    height: 70px;
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .service-heading {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .service-box {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }

  .service-content {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .emergency-services {
    padding: 70px 0;
  }

  .service-heading {
    margin-bottom: 50px;
  }

  .service-heading h2 {
    font-size: 34px;
  }

  .service-content h3 {
    font-size: 30px;
    gap: 12px;
  }

  .icon {
    font-size: 26px;
  }

  .service-content p {
    font-size: 17px;
    line-height: 1.8;
  }

  .service-btn {
    width: 180px;
    height: 55px;
    font-size: 18px;
  }

  .service-link {
    font-size: 18px;
  }

  .service-link span {
    font-size: 22px;
  }
}

/*=========================
FAQ
=========================*/

.faq-section {
  background: #fff;
}

/* Heading */

.faq-heading {
  text-align: center;
  margin-bottom: 60px;
}

.faq-heading span {
  display: block;
  color: #111;
  font-size: 22px;
}

.faq-heading h2 {
  font-size: 45px;
  color: #1d437d;
  font-weight: 300;
}

.faq-icon {
  font-size: 58px;
  margin-right: 15px;
}

/* Layout */

.faq-wrapper {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 70px;
  align-items: center;
}

/* Image */

.faq-image img {
  width: 100%;
  display: block;
}

/* Accordion */

.faq-item {
  border-bottom: 1px solid #bfbfbf;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0px 15px;
}

.faq-question h3 {
  font-size: 19px;

  font-weight: 500;
  color: #111;
  margin: 0;
}

.faq-question span {
  font-size: 36px;

  color: #222;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 15px;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    padding 0.35s ease;
}

.faq-answer p {
  color: #353434;
  margin: 5px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Increase if your content is longer */
  opacity: 1;
  padding: 0 15px 15px;
}
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive */

@media (max-width: 991px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-heading h2 {
    font-size: 36px;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  .faq-question span {
    font-size: 28px;
  }

  .faq-answer p {
    font-size: 16px;
    text-align: left;
  }

  .faq-wrapper {
    gap: 40px;
  }

  .faq-section {
    padding: 70px 0;
  }
}

/*==========================
Blog Section
==========================*/

.blog-section {
  padding: 90px 0;
  background: #fff;
}

.blog-section .container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}
.blog-section.main-blog .blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-detail-section.blog .service-detail-content.detail {
  background-color: #f1f78c;
}
.service-detail-section.blog .service-detail-content.detail h2,
.service-detail-section.blog .service-detail-content.detail p {
  color: #2a2a2a;
  text-align: left;
}

.service-detail-section.blog .service-detail-content.detail span {
  background-color: #fbffc0;
  color: #000;
  padding: 10px;
  border-radius: 15px;
  font-size: 14px;
  width: 70%;
  text-align: center;
}

/* Heading */

.blog-heading {
  margin-bottom: 60px;
}

.blog-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}

.blog-heading h2 {
  font-size: 54px;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0;
}

/* Grid */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */

.blog-card {
  transition: 0.35s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-image {
  overflow: hidden;
  height: 270px;
}
.blog-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.6s;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-content {
  padding-top: 22px;
}

.blog-content h3 {
  font-size: 30px;
  line-height: 1.35;
  margin-bottom: 18px;
  color: #1b1b1b;
  font-weight: 500;
}

.blog-content p {
  color: #666;
  margin-bottom: 22px;
  text-align: left;
}

.blog-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  text-decoration: underline;
  font-weight: 700;
  font-size: 17px;
}

.blog-content a span {
  transition: 0.3s;
}

.blog-content a:hover span {
  transform: translateX(6px);
}
.blog-section .service-btn {
  margin: 40px auto;
}
/* Responsive */

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-heading h2 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 70px 0;
  }

  .blog-heading {
    margin-bottom: 40px;
  }

  .blog-heading h2 {
    font-size: 34px;
  }

  .blog-content h3 {
    font-size: 24px;
  }

  .blog-content p {
    font-size: 16px;
  }

  .blog-btn {
    width: 190px;
    height: 52px;
    font-size: 15px;
  }
}

.cta-section {
  position: relative;
  background: var(--main-blue);
  min-height: 520px;
  overflow: hidden;
}

/* Container */

.cta-section .container {
  padding: 0 15px;
  height: 520px;
  display: flex;
  align-items: center;
}

/* Left Content */

.cta-content {
  width: 50%;
  position: relative;
  z-index: 2;
}

.cta-phone {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 35px;
}

.cta-content h2 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
}

.cta-content p {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  text-align: left;
}

/* Right Image */

.cta-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*==============================
Contact Info
==============================*/

.contact-info-section {
  padding: 60px 0;
  background: #fff;
}

.contact-info-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-item {
  margin-right: 20px;
}
.contact-item img {
  display: block;
  width: 25px;
}
.contact-item:not(:last-child) {
  border-right: 1px solid #d9d9d9;
}

/* Heading */

.contact-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-title i {
  font-size: 28px;
  color: #222;
}

.contact-title h4 {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Text */

.contact-item p {
  font-size: 17px;

  line-height: 1.8;
  color: #222;
  margin: 0;
}

.contact-item a {
  color: #111;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #c73d31;
}

/* Feature List */

.contact-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-features li {
  font-size: 16px;

  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-features li:last-child {
  margin-bottom: 0;
}

/*==============================
Responsive
==============================*/

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-item {
    border-right: none !important;
    border-bottom: 1px solid #ddd;
    padding: 30px 20px;
  }

  .contact-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    text-align: center;
  }

  .contact-title {
    justify-content: center;
  }

  .contact-features li {
    justify-content: center;
  }
}

/*==========================
Footer
==========================*/

.footer {
  background: #2c2929;
  padding: 70px 0 15px;
  color: #fff;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* Logo */

.footer-logo img {
  max-width: 260px;
  display: block;
  margin-bottom: 35px;
}

.footer-about p {
  color: var(--para);
  font-size: 16px;
  text-align: left;
}

/* Heading */

.footer h3 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
}

/* Menu */

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 15px;
}

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer ul li a {
  color: #d3cece;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #d94a37;
  padding-left: 8px;
}

/* Powered */

.powered {
  margin-top: 40px;
  color: #fff;
  font-size: 16px;
}

.powered a {
  color: #fff;
  text-decoration: underline;
}

/* Feature */
.footer .footer-col.footer-about .footer-logo {
  width: 300px;
}
.footer .footer-col.footer-about .footer-logo img {
  width: 100%;
}
.footer-feature {
  margin-bottom: 45px;
}

.footer-feature:last-child {
  margin-bottom: 0;
}

.footer-feature h3 {
  font-size: 21px;
  margin-bottom: 20px;
}

.footer-feature p {
  color: #fff;
  line-height: 1.8;
  font-size: 17px;

  text-align: justify;
}

/* Responsive */

@media (max-width: 991px) {
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer h3 {
    font-size: 28px;
  }

  .footer-feature h3 {
    font-size: 24px;
  }

  .footer-about {
    text-align: center;
  }

  .footer-logo img {
    margin: auto auto 25px;
  }
}

/*==============================
Service Detail Section
==============================*/

.service-detail-section {
  background: url("../img/Réparation\ de\ fuite-right-back.webp") center
    center/cover no-repeat;
  padding: 160px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}
.service-detail-section.blog {
  background-image: url(../img/blog-background.webp);
  background-size: cover;
  background-position: top;
}

.service-detail-section.degorgement-tout {
  background-image: url("../img/degorgement-tout-background.webp");
}
.service-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.service-detail-wrapper {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 62% 38%;

  align-items: stretch;
}

/* Left */

.service-detail-content {
  background: var(--main-blue);
  color: #fff;

  padding: 70px;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 35px;

  font-size: 15px;
}

.service-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.service-breadcrumb span {
  color: #fff;
}

.service-detail-content h2 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-detail-content h4 {
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 600;
  color: #fff;
}

.service-detail-content p {
  line-height: 1.9;
  color: #fff;
}

.service-detail-content p:last-child {
  margin-top: 35px;
}

/* Right */

.service-detail-image {
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s;
}

.service-detail-wrapper:hover .service-detail-image img {
  transform: scale(1.08);
}

/* Responsive */

@media (max-width: 991px) {
  .service-detail-wrapper {
    grid-template-columns: 1fr;
  }

  .service-detail-content {
    padding: 45px 35px;
  }

  .service-detail-image {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .service-detail-section {
    padding: 60px 15px;
  }

  .service-detail-content {
    padding: 35px 25px;
  }

  .service-detail-content h2 {
    font-size: 42px;
  }

  .service-detail-content h4 {
    font-size: 22px;
  }

  .service-detail-content p {
    font-size: 17px;
  }

  .service-detail-image {
    height: 280px;
  }
}

/* repair section  */
/* ===============================
   REPAIR SECTION
================================== */

.repair-section {
  padding: 90px 20px;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.repair-section .container {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.repair-section .repair-left {
  flex: 1;
}

.repair-section .repair-right {
  width: 470px;
  background-color: rgba(246, 246, 246, 1);
  padding: 55px;
}

/* Badge */

.repair-section .repair-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Heading */

.repair-section h2 {
  font-size: 52px;
  line-height: 1.08;
  color: #222;
  font-weight: 800;
  margin: 0 0 35px;
  max-width: 700px;
}

/* Blocks */

.repair-section .repair-block {
  margin-top: 45px;
}

.repair-section .repair-block h3 {
  font-size: 30px;
  margin-bottom: 22px;
  color: #222;
}

.repair-section .repair-block p {
  font-size: 19px;
  line-height: 1.8;
  color: #444;
}

/* List */

.repair-section .repair-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 30px;
}

.repair-section .repair-list li {
  font-size: 19px;
  color: #222;
  line-height: 1.9;
  font-weight: 600;
  list-style: disc;
}
.repair-section .repair-list span {
  font-weight: 500;

  line-height: 14px;
}
.repair-section .repair-list li p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}
.repair-section .repair-block.two .repair-list li {
  font-weight: 500;
}
/* Right Form */

.repair-section .repair-form-title {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 50px;
  color: #222;
  text-transform: uppercase;
}

.repair-section .repair-field {
  margin-bottom: 28px;
}

.repair-section .repair-field input,
.repair-section .repair-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #979797d4;
  background: transparent;
  padding: 5px 0 28px;

  outline: none;
  font-size: 17px;
  color: #222;
  font-family: inherit;
}

.repair-section .repair-field textarea {
  height: 90px;
  resize: none;
}

.repair-section .repair-field input::placeholder,
.repair-section .repair-field textarea::placeholder {
  color: #1a1919;
}

.repair-section .repair-btn {
  background: none;
  border: none;
  padding: 0;
  margin-top: 10px;
  cursor: pointer;

  font-size: 17px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;

  text-decoration: underline;
  transition: 0.3s;
}

.repair-section .repair-btn:hover {
  letter-spacing: 1px;
}

/* Responsive */

@media (max-width: 991px) {
  .repair-section .repair-container {
    flex-direction: column;
  }

  .repair-section .repair-right {
    width: 100%;
  }

  .repair-section h2 {
    font-size: 42px;
  }

  .repair-section .repair-block h3 {
    font-size: 32px;
  }

  .repair-section .repair-form-title {
    font-size: 34px;
  }
}

/*==============================
      CTA SECTION
==============================*/

.repair-cta {
  background: #3e3a39;
  padding: 65px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.repair-cta * {
  box-sizing: border-box;
}

.repair-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.repair-cta .repair-cta-content {
  flex: 1;
}

.repair-cta .repair-cta-title {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.repair-cta .repair-cta-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 2px solid #eceb82;
  color: #eceb82;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-top: 8px;
}

.repair-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.25;
}

.repair-cta p {
  margin: 20px 0 0;
  color: var(--para);
  font-size: 19px;
  line-height: 1.7;
  max-width: 830px;
}

.repair-cta-btn-wrap {
  flex-shrink: 0;
}

.repair-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 56px;
  padding: 0 35px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 600;
  transition: 0.3s;
}

.repair-cta-btn:hover {
  background: #b93625;
  transform: translateY(-2px);
}

/*==============================
      Responsive
==============================*/

@media (max-width: 991px) {
  .repair-cta {
    padding: 50px 20px;
  }

  .repair-cta .repair-cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .repair-cta h2 {
    font-size: 34px;
  }

  .repair-cta p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .repair-cta {
    padding: 40px 15px;
  }

  .repair-cta .repair-cta-title {
    gap: 15px;
  }

  .repair-cta h2 {
    font-size: 28px;
  }

  .repair-cta p {
    font-size: 16px;
    line-height: 1.6;
  }

  .repair-cta-btn {
    width: 100%;
    font-size: 18px;
    height: 50px;
  }

  .repair-cta-btn-wrap {
    width: 100%;
  }
}

/*=====================================
        BOOKING SECTION
======================================*/

.repair-booking {
  position: relative;
  padding: 80px 20px;
  background: url("../img/contact-background.webp") center center/cover
    no-repeat;
}
.repair-booking.main-contact .repair-booking-form h2 {
  font-size: 35px;
}
.repair-booking-overlay {
  width: 100%;
}

.repair-booking1.detail-booking .container {
  display: flex;
  align-items: stretch;
}
.repair-booking1.detail-booking .repair-booking-form h2 {
  font-size: 33px;
}

.repair-booking1.detail-booking .repair-booking-form {
  width: 62%;
  background-color: rgba(246, 246, 246, 1);
  padding: 45px 60px 45px 45px;
}
.repair-booking1.detail-booking .repair-booking-info {
  background-image: url(../img/blog-detail-contact.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.repair-booking1.detail-booking .repair-booking-info::after {
  position: absolute;
  content: "";
  background-color: #00000057;
  inset: 0;
  z-index: 1;
}
.repair-booking1.detail-booking .contact-info {
  position: absolute;
  z-index: 2;
}
.repair-booking1.detail-booking {
  padding-bottom: 90px;
}
.prev-next {
  display: flex;
  justify-content: space-between;
}
/*==========================
      LEFT SIDE
==========================*/

.repair-booking-form {
  width: 62%;
  background: #fff;

  padding: 45px;
}

.repair-booking-form h2 {
  font-size: 48px;
  font-weight: 400;
  color: #222;
  margin-bottom: 40px;
}

.repair-booking-field {
  margin-bottom: 28px;
}

.repair-booking-field input,
.repair-booking-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d6d6d6;
  padding: 15px 0;
  background: none;
  outline: none;
  font-size: 17px;
}

.repair-booking-field textarea {
  height: 90px;
  resize: none;
}

.repair-booking-field input::placeholder,
.repair-booking-field textarea::placeholder {
  color: #666;
}

.repair-booking-btn {
  border: none;
  background: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  color: #111;
  transition: 0.3s;
}

.repair-booking-btn:hover {
  letter-spacing: 1px;
}

/*==========================
      RIGHT SIDE
==========================*/

.repair-booking-info {
  width: 38%;
  padding: 45px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../img/contact-front.webp") center center/cover no-repeat;

  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.repair-booking-tag {
  display: inline-block;
  background: #fff5a8;
  color: #222;

  padding: 12px 28px;
  border-radius: 40px;

  font-size: 13px;
  font-weight: 700;

  margin-bottom: 35px;

  width: max-content;
}

.repair-booking-info h2 {
  font-size: 50px;
  line-height: 1.05;
  margin-bottom: 25px;
  font-weight: 700;
}

.repair-booking-info p {
  font-size: 17px;

  color: #fff;
  text-align: left;
}
.location-map iframe {
  width: 100%;
  height: 500px;
}

/*==========================
      RESPONSIVE
==========================*/

@media (max-width: 991px) {
  .repair-booking-container {
    flex-direction: column;
  }

  .repair-booking-form,
  .repair-booking-info {
    width: 100%;
  }

  .repair-booking-info {
    min-height: 420px;
  }

  .repair-booking-form h2 {
    font-size: 36px;
  }

  .repair-booking-info h2 {
    font-size: 46px;
  }

  .repair-booking-info p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .repair-booking {
    padding: 40px 15px;
  }

  .repair-booking-form,
  .repair-booking-info {
    padding: 30px;
  }

  .repair-booking-form h2 {
    font-size: 30px;
  }

  .repair-booking-info h2 {
    font-size: 38px;
  }

  .repair-booking-info p {
    font-size: 16px;
  }

  .repair-booking-tag {
    font-size: 11px;
    padding: 10px 18px;
  }
}

/* blog-detail-body */
.blog-detail-body .container {
  padding: 100px;
  padding-bottom: 0;
}

.blog-detail-body .big-one {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 30px;
}
.blog-detail-body .repair-list li {
  font-weight: 500;
}
.blog-detail-body .blog-box h2 {
  font-size: 33px;
  margin-bottom: 20px;
}

.blog-detail-body .blog-box p {
  font-size: 18px;
}
.blog-detail-body .blog-box ul {
  margin-bottom: 25px;
  margin-left: 20px;
}

.blog-detail-body .repair-list li {
  font-weight: 700;
  font-size: 18px;
}
.blog-detail-body .repair-list li span {
  font-weight: 400;
}
.blog-detail-body .repair-list li p {
  font-weight: 400;
}
.blog-detail-body .blog-box h4 {
  font-size: 18px;
}

/*=================================
        POST NAVIGATION
==================================*/

.repair-post-nav {
  padding: 80px 20px 0px;
  background: #fff;
}

/* Previous Post */

.repair-post-nav-prev {
  display: inline-block;

  color: #3126b3;
  font-size: 17px;

  font-weight: 500;

  text-decoration: underline;
  transition: 0.3s;
}

.repair-post-nav-prev:hover {
  opacity: 0.7;
}

/* Social Icons */

.repair-post-nav-social {
  margin-top: 50px;
  display: flex;
  gap: 55px;
  align-items: center;
}

.repair-post-nav-social img {
  width: 24px;
}

/* Responsive */

@media (max-width: 768px) {
  .repair-post-nav {
    padding: 60px 20px;
  }

  .repair-post-nav-prev {
    font-size: 18px;
  }

  .repair-post-nav-social {
    margin-top: 70px;
    gap: 30px;
    flex-wrap: wrap;
  }

  .repair-post-nav-social a {
    font-size: 26px;
  }
}

.copyright {
  background-color: #2c2929;
  padding: 35px 0px;
  border-top: 1px solid #737373;
}
.copyright p {
  margin-bottom: 0px;
  color: var(--para);
  font-size: 15px;
}
.repair-booking.main-contact .repair-booking-container {
  display: flex;
}
.repair-cta-btn.two {
  background-color: #f1f78c;
  color: #000;
  width: 230px;
  font-size: 16px;
  border-radius: unset;
  padding: 10px 0px;
  text-align: center;
  text-decoration: underline;
  height: auto;
  transition: all ease-in-out 0.5s;
}

.repair-cta-btn.two:hover {
  background-color: #3e3a39;
  color: #fff;
  border: 1px solid #f1f78c;
}

/* .legal-section  */
.legal-section {
  padding-top: 100px;
}

.legal-section .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.legal-section .main-title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;

  color: #000;
}

.green-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #baf8b6, #66d86d);
  flex-shrink: 0;
}

.legal-left h3 {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 700;
}

.legal-left p {
  font-size: 18px;
  margin-bottom: 28px;
}

.legal-list {
  padding-left: 28px;
  margin-bottom: 35px;
}

.legal-list li {
  font-size: 18px;
  margin-bottom: 5px;
}

.director {
  font-size: 18px;
}

.info-box {
  margin-bottom: 60px;
}

.info-box h3 {
  font-size: 30px;

  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.info-box p {
  font-size: 17px;
  margin-bottom: 18px;
  text-align: left;
}

.info-box ul {
  padding-left: 25px;
}

.info-box li {
  font-size: 18px;
  margin-bottom: 10px;
}

.powered {
  margin-top: 35px;
  font-size: 17px;
  color: #111;
}

/* Responsive */

@media (max-width: 991px) {
  .legal-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .main-title {
    font-size: 36px;
  }

  .info-box h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 50px 20px;
  }

  .main-title {
    font-size: 30px;
    gap: 12px;
  }

  .green-dot {
    width: 24px;
    height: 24px;
  }

  .legal-left h3 {
    font-size: 22px;
  }

  .legal-left p,
  .legal-list li,
  .info-box p,
  .info-box li {
    font-size: 16px;
  }
}

.blog-detail-body.mentions h1 {
  font-size: 45px;
}
.blog-detail-body.mentions .container {
  padding: 0px;
}

.blog-detail-body.mentions ul li {
  list-style: disc;
}
