:root {
  --container: 1400px;
  --black: #0b0b0b;
  --white: #ffffff;
  --muted: #6b6b6b;
  --silver-1: #c0c0c0;
  --silver-2: #e0e0e0;
  --hero-gap: 36px;
  --hero-padding: 56px;
  --hero-image-w: 560px;
  --font-sans: "Helvetica Neue", Arial, system-ui, -apple-system, Roboto,
    "Segoe UI", sans-serif;
  --card-bg: #f6f8f9;
  --silver-1: #cfcfcf;
  --max-width: var(--container);
  --hero-padding-vertical: 72px;
  --hero-image-width: 560px;
  --stripe-red-width: 44px;
  --stripe-white-width: 14px;
  --stripe-gap: 20px;
  --card-width: 900px;
  --card-padding: 42px;
  --gap-x: 32px;
  --gap-y: 22px;
  --icon-size: 42px;
  --icon-box: 56px;
  --title-color: #0b0b0b;
  --accent: #1e88e5;
  --shadow: 0 18px 40px rgba(15, 20, 25, 0.08);
  --radius: 8px;
  --sliver: #c0c0c0;
  --field-border: #e9ecef;
  --silver-1: #ededed;
  --silver-2: #cfcfcf;
  --accent: #2bb3a1;
  --bg: #262626;
  --font-size:40px;

}
@media(max-width:1440px){
    :root {
    --hero-padding-vertical: 40px 15px;
    --font-size:40px;
  }
}

@media (max-width: 1024px) {
  :root {
    --hero-padding-vertical: 40px 15px;
    --font-size:30px;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  opacity: 1;

}
.container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

html {
  scroll-behavior: smooth;
}
h1, h2{
  font-size: var(--font-size);
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 16px 0;
}
p{
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}
/* Animation effect */
.scroll-trigger {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-trigger--offscreen {
  opacity: 0;
  transform: translateY(40px); /* થોડું નીચે થી slide */
}

/* Header */
header.site-header {
  position: relative;
  height: var(--header-height);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
}

/* ---------- TOP STRIP ---------- */
.top-strip {
  padding: 10px;
  background: #e9e9e9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  position: relative;
}

.contact-block {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
  color: var(--grey);
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(180deg, var(--silver-1), var(--silver-2)); */
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.icon-circle svg {
  width: 16px;
  height: 16px;
  fill: var(--black);
}

.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.contact-title {
  font-size: 11px;
  color: var(--grey);
  font-weight: 700;
  padding-bottom: 4px;
}

.contact-detail {
  font-size: 13px;
  color: var(--black)!important;
  font-weight: 600;
}

.sep {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
}

.top-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--grey);
  cursor: pointer;
}

/* ---------- NAV ROW ---------- */
.nav-row {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}

nav.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}

nav.main-nav a {
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

nav.main-nav a.active {
  color: var(--black);
  font-weight: 800;

}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-fab svg {
  width: 30px;
  height: 30px;
  fill: var(--black);
}
.logo_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- LOGO ---------- */
.logo-box svg{
 height: auto;
  width: 100%;
  max-width: 150px;
}


/* ---------- HAMBURGER (MOBILE) ---------- */
.hamburger-btn {
  display: none;
  /* shown on mobile via media query */
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #c0c0c0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
}

/* ---------- MOBILE NAV (DROPDOWN) ---------- */
nav.mobile-nav {
  display: none;
  position: relative;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

nav.mobile-nav.open {
  display: block;
  animation: drop .22s ease;
}

@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

nav.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

nav.mobile-nav a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--grey);
  font-weight: 700;
  border-radius: 6px;
}

nav.mobile-nav a.active,
nav.mobile-nav a:hover {
  background: var(--silver-1);
  color: var(--black);
}

@media(max-width:1199px) {
  nav.main-nav ul {
    gap: 18px;
  }
  .logo-box img {
    height: 35px;
  }
}

@media(max-width:900px) {
  :root {
    --logo-height: 72px;
    --top-height: 30px;
    --nav-height: 56px
  }

  nav.main-nav ul {
    display: none
  }

  .phone-fab {
    width: 48px;
    height: 48px
  }

  .hamburger-btn {
    display: flex
  }
  /* position mobile nav under header */
  nav.mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--top-height) + var(--nav-height));
    z-index: 110;
  }

  /* ensure logo smaller */
  .logo-box img {
    height: 56px
  }

  /* push header height to auto so mobile dropdown doesn't overlap weirdly */
  header.site-header {
    height: auto
  }

  .top-strip {
    display: none;
  }

  .nav-row {
    padding: 15px;
  }

  .phone-fab {
    border: 1px solid #c0c0c0;
    border-radius: 8px;
  }

  .logo-box svg {
    width: 120px;
  }
}

/* DESKTOP: ensure mobile elements hidden */
@media(min-width:901px) {
  nav.mobile-nav {
    display: none !important;
  }

  .hamburger-btn {
    display: none !important;
  }

  .top-strip {
    display: block;
  }

  .phone-fab {
    display: none;
  }

  .logo-box {
    display: block;
  }
}

/* ---------- section 1 ---------- */
.hero {
  padding: var(--hero-padding-vertical);
  background: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr var(--hero-image-width);
  gap: var(--hero-gap);
  align-items: center;
}

/* left column */
.hero-kicker {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.hero-title {
  font-size: var(--font-size);
  line-height: 1.02;
  margin: 0 0 18px 0;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.6px;
}

.hero-paragraph {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 22px;
}

.hero-ctas {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #D71538;
  color: var(--white);
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 165px;
}

.call-block {
  display: flex;
  flex-direction: column;
}

.call-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.call-number {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}

/* ---------- RIGHT: media + stripes ---------- */
.hero-media {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* image is slightly wider than the column and pulled right for overlay look */
.hero-image {
  width: calc(var(--hero-image-width) + 40px);
  max-height: 560px;
  object-fit: cover;
  margin-right: -40px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  display: block;
}

/* Make sure image doesn't have left margin anymore */
.hero-media .hero-image {
  margin-left: 0;
  margin-right: 0;
  border-radius: 0 8px 8px 0;
  position: relative;
  z-index: 1;
}
.hero{
  display: none;
}
/* ---------- responsive ---------- */


@media(max-width:1024px) {
  .he_img {
    height: auto;
    background-image: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: 1;
    justify-content: center;
    margin-top: 0;
    padding: 0;
  }

  .hero-content {
    order: 2;
  }

  .top-inner {
    gap: 12px;
  }

}

@media (max-width: 1200px) {
  :root {
    --hero-image-width: 480px;
  }

  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 960px) {
  .hero-title {
    font-size: 30px;
  }
  .hero-kicker{
    font-size: 15px;

}
  .hero-paragraph {
    font-size: 16px;
  }

  .hero-image {
    width: 100%;
  }
}

@media(max-width:990px) {
  /* .hero-ctas {
    justify-content: space-between;
  } */
.hero{
  display: block;
}
.plumbing-section{
  display: none!important;
}
  .btn-primary {
    width: auto;
    padding: 14px 40px;
  }
}

/* ===================== Start : New Hero section ======================== */
/* .hero{
  display: none;
} */
.plumbing-section {
  display: flex;
  align-items: center;
  /* margin: 40px auto; */
  min-height: 450px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* left content */
.plumbing-content {
  flex: 1;
  padding: 60px 40px;
  z-index: 5;
  position: absolute;
  max-width: 1400px;
  left: 0;
  right: 0;
  margin: auto;
}

.plumbing-desc {
  margin-bottom: 30px;
  max-width: 670px;
}
.plumbing_bottom_text{
  margin-top: 36px;
      color: #000;
    font-style: italic;
    font-weight: 500;

}
.plumbing-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #D71538;
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 25px;
  transition: 0.3s;
  width: 100%;
  max-width: 165px;
  text-align: center;
}


.plumbing-call {
  display: inline-block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  vertical-align: middle;
}

.plumbing-call span {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-top: 5px;
  color: var(--black)!important;
  letter-spacing: 0;
}

/* right side image */
.plumbing-image {
  flex: 1;
  position: relative;
  max-width: 920px;
  margin-left: auto;
} 

.plumbing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: auto;
}

/* diagonal divider */
.plumbing-divider {
  position: absolute;
  top: 0;
  left: -100px;
  width: 180px;
  height: 100%;
  background: white;
  transform: skewX(350deg);
  z-index: 3;
}

.plumbing-divider .divider-red {
  position: absolute;
  top: 0;
  right: 15px;
  width: 6px;
  height: 100%;
  background: #e30613;
}

.plumbing-divider .divider-red:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -7px;
  width: 20px;
  height: 50%;
  background: #e30613;
  z-index: 5;
}

.plumbing-divider .divider-white {
  position: absolute;
  top: 0;
  right: -21px;
  width: 6px;
  height: 100%;
  background: var(--black);
}

.plumbing-divider .divider-white:before {
  content: '';
  position: absolute;
  top: 0;
  right: -7px;
  width: 20px;
  height: 50%;
  background: var(--black);
  z-index: 5;
}

.plumbing_inner_conntent{
  width: 50%;
}
.plumbing-cts{
      display: flex;
    align-items: center;
    gap: 10px;
}
/* responsive breakpoints */
@media(max-width:1650px){
  .plumbing_inner_conntent {
    width: 40%;
}
}
@media(max-width:1475px){
  .plumbing-image{
    max-width: 750px;
  }
}
@media(max-width:1440px){
  .plumbing-content{
    padding: 60px 15px;
  }
}
@media (max-width: 1299px) {
  .plumbing-image {
      max-width: 630px;
  }
}
@media (min-width: 991px) and (max-width: 1130px) {
  .plumbing-title {
    font-size: 33px;
  }
  .plumbing-desc {
    font-size: 14px;
    max-width: 430px;
  }
  .plumbing-call span{
    font-size: 19px;
  }
}
@media (max-width: 1060px) {
    .plumbing-image {
        max-width: 540px;
    }
}
@media (max-width: 991px) {
  .plumbing-section {
    flex-direction: column-reverse;
  }

  .plumbing-divider {
    display: none;
  }
  .plumbing-image{
    max-width: unset;
    width: 100%;
  }
  .plumbing-content {
    width: 100%;
    box-sizing: border-box;
    position: unset;
    max-width: unset;
    padding: 40px 15px;
  }
  .plumbing_bottom_text{
    margin: 0;
  }
}

@media(max-width:543px) {
  .plumbing-title {
    font-size: 28px;
  }

  .plumbing-btn {
    padding: 14px 10px;
    margin-right: 15px;
  }
}

/* ===================== End : New Hero section ======================== */

/* section 2 */
.muted {
  color: var(--muted);
}

/* Section wrapper */
.service-hero {
  background: var(--bg);
  padding: var(--hero-padding-vertical);
  color: var(--black);
  background: #f6f6f6;
}

.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left image area */
.image-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.image-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 20, 25, 0.06);
  background: linear-gradient(180deg, #fff, #fafafa);
  display: block;
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* small badge card overlapping bottom-left */
.badge-card {
  position: absolute;
  left: 12%;
  bottom: -26px;
  /* overlap */
  width: 42%;
  min-width: 220px;
  background: var(--card-bg);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.badge-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.badge-thumb img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.badge-text {
  font-size: 14px;
  color: var(--grey);
}

.badge-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-top: 6px;
}


.content p {
  margin: 0 0 28px 0;
  max-width: 600px;
}

/* checklist grid */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 28px;
}

.feature {
  display: flex;
  gap: 10px;
  align-items: center;
}

.feature .tick {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tick svg {
  width: 17px;
  height: 17px;
  stroke: #D71538;
}

.feature .ft-title {
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
  line-height: 1.5;
}

.feature .ft-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* CTA */
.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-view {
  background: #D71538;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;

  border: 1px solid rgba(0, 0, 0, 0.04);
}

.small-note {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 990px) {
  .service-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .badge-card {
    left: 6%;
    width: 56%;
    bottom: -22px;
  }

}
@media(max-width:678px){
  .feature .ft-title{
    font-size: 15px;
  }
  .cta-row{
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .badge-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .image-wrap {
    align-items: center;
  }

  .content h2 {
    font-size: 30px;
    padding: 0 15px;
  }
  .content p {
    padding: 0 15px;
    font-size: 16px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn-view {
    padding: 12px 20px;
  }
  .service-hero .hero-kicker{
    padding: 0 15px;
  }
}

/* Section 3 */

.services-section {
  position: relative;
  padding: var(--hero-padding-vertical);
  /* room for top image and card */
  overflow: visible;
}

/* top image area (inside the section) */
.section-top-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  height: 250px;
  /* crop height like your screenshot */
  overflow: hidden;
  z-index: 0;
}

.section-top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  /* show truck on right */
  display: block;
  filter: none;
}

/* main page container for the card */
.services-page {
  position: relative;
  z-index: 2;
  /* above top image overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 145px;
  padding-bottom: 20px;
}

/* card */
.services-card {
  width: 100%;
  max-width: var(--card-width);
  background: var(--white);
  padding: 70px;
  box-shadow: 0 18px 40px 18px rgba(15, 20, 25, 0.08);
  position: relative;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-head h2 {
  text-align: center;
}

/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
}

.service {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 4px 0;
  position: relative;
  padding: 20px 0;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 42px;
  height: 42px;
  color: #356f80;
}

.service-title {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--black);
}

.service-desc {
  margin: 0;
  font-family: var(--font-sans);
}

/* alternatively add a soft rounded overlay behind the whole service row */
.service .overlay-box {
  position: absolute;
  right: -24%;
  top: 0;
  bottom: 0;
  left: -6%;

  border-radius: 8px;
  z-index: 0;
}

/* ensure text and icon are above overlay */
.service>* {
  position: relative;
  z-index: 2;
}

/* responsive adjustments */
@media (max-width: 990px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-top-image {
    position: relative;
  }

  .services-section {
    /* padding: 0 12px; */
    overflow-x: hidden;
  }

  .services-section::before {
    height: 180px;
  }

  .services-page {
    padding: 0;
  }

  .service_inner_div {
    margin: 40px 0 0;
  }

}
@media(max-width:580px){
  .service-desc,
  .service-title{
    font-size: 16px;
  }
.card-head h2{
  font-size: 23px;
}
}
@media (max-width: 480px) {

  .services-card {
    padding: 28px;
  }

}
@media(max-width:425px){
  .card-head h2{
    font-size: 20px;
  }
}

/* Section 4 */

/* Section wrapper */
.faq-section {
  padding: var(--hero-padding-vertical);
  background: linear-gradient(180deg, #fff, #fbfdfe);
}

.faq-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* LEFT: image card with dotted decoration */
.faq-image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0% 100%, 0% 0%);
  z-index: 11;

}

.faq-image {
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10, 10, 12, 0.06);
  display: block;
  height: 100%;
  min-height: 570px;
    object-fit: cover;
  object-position: left;
}

/* dotted decoration bottom-left (matches screenshot) */
.shape {
  position: absolute;
  top: 286px;
  left: 12%;
  width: 346px;
  height: 328px;
  background-repeat: no-repeat;
}

/* RIGHT: content column */
.faq-content {
  padding-right: 20px;
  padding-left: 90px;
}

.kicker {
  font-size: 13px;
  color: #D71538;
  font-weight: 700;
  margin-bottom: 12px;
}

.lead {
  margin-bottom: 28px;
  max-width: 680px;
}

/* ACCORDION */
.accordion {
  width: 100%;
  max-width: var(--faq-width);
}

.acc-item {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: visible;
  position: relative;
}

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(15, 20, 25, 0.06);
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 6px 18px rgba(10, 10, 12, 0.03);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  text-align: left;
}

.acc-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 10, 12, 0.06);
}

/* active header style (green) */
.acc-item.open .acc-header {
  color: var(--white);
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.12);
  border: none;
  background: var(--black);
}

.acc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(15, 20, 25, 0.04);
  color: var(--muted);
  font-size: 14px;
}

.acc-item.open .acc-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.2, 0.9, 0.3, 1),
    padding 0.22s ease;
  background: transparent;
}

.acc-item.open .acc-panel {
  padding: 18px 0 22px 0;
  max-height: 400px;
}

.acc-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* small caret */
.caret {
  transition: transform 0.22s ease;
  transform: rotate(0deg);
}

.acc-item.open .caret {
  transform: rotate(180deg);
}

/* responsive: stack under 980px */
@media(max-width:1300px) {
  .shape {
    left: 11%;
  }

  .faq-content {
    padding-left: 0;
  }
}

@media(max-width:1024px) {
  .shape {
    display: none;
  }

  .faq-content {
    padding-left: 0;
  }
}

@media (max-width: 990px) {
  .faq-inner {
    flex-direction: column;
    gap: 28px;
    padding: 0 12px;
  }

  .faq-image {
    max-width: 100%;
  }

  .faq-content {
    padding: 0;
  }

  .kicker {
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .acc-header {
    padding: 17px;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }

  .acc-item.open .acc-panel {
    max-height: 1000px;
  }
  .lead{
    font-size: 16px;
    line-height: 1.4;
  }
  .acc-body{
    margin: 0 6px;
  }
  .faq-content {
    text-align: center;
  }
}

/* Section 5 */

.re-section {
  padding: var(--hero-padding-vertical);
  background: linear-gradient(180deg, #fff, #fbfdfe);
}

.re-inner {
  display: flex;
  gap: var(--gap);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* LEFT: content */
.re-kicker {
  font-size: 13px;
  color: #D71538;
  font-weight: 700;
  margin-bottom: 10px;
}

/* .re-title {
  font-size: var(--font-size);
  line-height: 1.05;
  margin: 0 0 16px 0;
  font-weight: 900;
} */

.re-sub {
  margin: 0 0 26px 0;
}

.re-main-content {
  text-align: center;
}

.re-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.re-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.re-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 26%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.re-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--highlight);
  stroke-width: 1.6;
}

.re-item h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}

.re-item p {
  margin: 6px 0 0 0;
  max-width: 720px;
}

/* RIGHT: image card */
.re-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-card {
  width: 100%;
  max-width: var(--image-w);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.media-card img {
  width: 100%;
  max-width: 696px;
  height: auto;
  display: block;
  object-fit: cover;
}

/* small meta / points block optionally under title (not required) */
.points {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.point {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
}

.point small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* responsive */
@media (max-width: 1080px) {
  :root {
    --image-w: 440px;
  }

  .re-title {
    font-size: 32px;
  }
}

@media (max-width: 990px) {
  .re-inner {
    flex-direction: column;
    gap: 28px;
  }

  .re-media {
    order: 1;
  }

  .media-card {
    margin: 0;
  }

  .re-inner {
    padding: 0 12px;
  }

  .re-list {
    gap: 25px;
  }

  .re-content {
    order: 2;
  }
  .media-card{
      max-width: inherit;
  }
}

@media (max-width: 575px) {
  .re-title {
    font-size: 30px;
  }

  .re-icon {
    width: 48px;
    height: 48px;
  }

  .re-icon svg {
    width: 22px;
    height: 22px;
  }
  .re-section{
    padding-bottom: 0;
  }
  .re-item h4{
    font-size: 16px;
  }
}

/* Section 6 */

/* outer wrapper */
.contact-wrap {
  display: flex;
  gap: 36px;
  align-items: stretch;
  background: var(--white);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  width: 80%;
  margin: 0 auto;
}

/* LEFT card (fixed width) */
.left-card {
  flex: 0 0 380px;
  /* fixed width to match side-card look */
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-card .small {
  font-size: 12px;
  opacity: 0.95;
  font-weight: 600;
  margin-bottom: 6px;
}

.left-card h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.left-card p {
  margin: 40px 0 40px;
  line-height: 1.5;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.left-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 18px;
}

.left-info .muted {
  color: var(--white);
  font-weight: 600;
}

.left-card .bottom-note {
  font-size: 13px;
  opacity: 0.95;
  margin-top: 16px;
}

.contact-phone {
  display: flex;
  align-items: center;
  /* icon top align */
  gap: 12px;
  color: #fff;
  /* for dark background */
  font-weight: 600;
}

.contact-phone .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-phone .icon svg {
  fill: #fff;
}

.contact-phone .numbers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  /* space between the two numbers */
}

.email_muted {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* decorative circle */
.bubble {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 60%);
  pointer-events: none;
}

/* RIGHT panel (form) */
.right-panel {
  flex: 1 1 auto;
  background: var(--white);
  border-radius: 14px;
  padding: 36px 42px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.right-panel h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.subtext {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
}

/* Form layout */
form {
  width: 100%;
}

.row-gutter {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  /* large horizontal space between the two fields */
  margin-top: 18px;
}

/* each column in top row should take ~50% but keep big gap */
.row-gutter .col {
  flex: 1 1 0;
  min-width: 0;
}

label.field-label {
  display: block;
  font-size: 18px;
  color: var(--grey);
  font-weight: 600;
}

/* Underline style inputs to match reference */
.input-underline {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #e6e6e6;
  padding: 8px 6px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.input-underline:focus {
  border-bottom-color: var(--black);
}

/* Subject full width */
.subject-wrap {
  margin-top: 20px;
}

/* Message with more space */
.message-wrap {
  margin: 30px 0;
}

.message-area {
  width: 100%;
  height: 100px;
  resize: vertical;
  border: 0;
  border-bottom: 2px solid #e6e6e6;
  padding: 12px 6px;
  font-size: 16px;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  line-height: 1.4;
}

.message-area:focus {
  border-bottom-color: var(--black);
}

.form_serivces {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

/* Button aligned left like reference, with silver color */
.btn-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-send {
  background: #D71538;
  color: var(--white);
  padding: 11px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-size: 15px;
}


.form-notes {
  margin-top: 30px;
  color: var(--grey);
  font-size: 16px;
}

/* make sure top two fields have generous vertical spacing like reference */
.top-spacing {
  margin-top: 20px;
}

.contact-form {
  padding: var(--hero-padding-vertical);
}

/* RESPONSIVE adjustments */
@media(max-width:1300px) {
  .contact-wrap {
    width: auto;
    gap: 10px;
  }
}
@media(max-width:1199px){
  .right-panel{
    padding: 21px 22px;
  }
}

@media (max-width:990px) {
  .contact-wrap {
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    max-width: fit-content;
  }

  .left-card {
    order: 1;
    flex: none;
    width: auto;
    padding: 22px;
  }

  .right-panel {
    order: 2;
    padding: 22px;
  }

  .row-gutter {
    flex-direction: column;
    gap: 12px;
  }
}
@media(max-width:575px){
  .message-area{
    height: 100px;
  }
}
@media (max-width:420px) {
  .right-panel {
    padding: 16px;
  }

  .left-card {
    padding: 16px;
  }
}

/* Footer */

.site-footer {
  background: var(--bg);
  color: var(--white);
  padding: 50px 20px 10px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.footer-li p{
  margin: 0;
  color: var(--white);
}
/* FLEX RATIOS: first and last grow double compared to middle ones */
.col {
  min-width: 160px
}

.logo-col {
  flex: 2 1 0;
}

.logo-col svg {
  filter: invert(1);
  height: auto;
  width: 140px;
}

/* larger */
.nav-col {
  flex: 1 1 0;
}

/* smaller */
.areas-col {
  flex: 1 1 0;
}

/* smaller */
.contact-col {
  flex: 2 1 0;
}

/* larger */

/* content styling */
.logo-col img {
  width: 160px;
  margin-bottom: 14px;
  background: #000;
  padding: 8px;
  border-radius: 4px;
  display: block;
}

.logo-col .desc {
  font-size: 14px;
  line-height: 25px;
  color: var(--white);
}

.logo-col .desc strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 15px;
  position: relative;
  padding-bottom: 6px;
}

.progress-bar {
  width: 120px;
  /* total width of the bar */
  height: 3px;
  /* height of the bar */
  background-color: #817e7e;
  /* gray background */
  border-radius: 3px;
  /* rounded corners */
  overflow: hidden;
}

.progress-fill {
  width: 32%;
  /* filled portion (adjust as needed) */
  height: 100%;
  background-color: #D71538;
  /* teal/greenish fill */
}


.footer-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  font-size: 14px;
}

.footer-list li {
  margin: 8px 0;
}

.footer-li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.footer-list a {
  color: var(--white);
  text-decoration: none;
  line-height: 25px;
}

.footer-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  font-size: 14px;
}


.contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 8px 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-col .contact-email {
  margin: 15px 0 0;
}

.muted-small {
  color: var(--white);
  font-size: 14px;
  line-height: 25px;
}

/* Divider + centered social icons */
.footer-divider-wrap {
  max-width: var(--container);
  margin: 30px auto 0;
  position: relative;
  padding: 0 20px;
}

.hr-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.social-cluster {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  cursor: pointer;
}

.social-btn:hover {
  color: var(--white);
  background: #333;
}

.footer-bottom {
  text-align: center;
  margin: 40px auto 30px;
  max-width: var(--container);
  font-size: 14px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
}
.contact_link{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.contact_website_link{
  margin-top: 25px;
}
.contact_website_link .muted-small{
  line-height: 1;
}
  .areas-col .footer-list .footer-li p{
    font-size: 14px;
  }
/* Responsive: stack columns on small screens */
@media (max-width:980px) {
  .footer-inner {
    flex-direction: column;
    gap: 22px;
  }

  .logo-col,
  .nav-col,
  .areas-col,
  .contact-col {
    flex: 1 1 auto;
  }

  .social-cluster {
    position: static;
    transform: none;
    margin: 14px auto 0;
  }

  .contact-item svg {
    height: 15px;
    width: 15px;
  }

  .footer-divider-wrap {
    padding: 0;
  }
.areas-col .footer-list .footer-li p{
    font-size: 14px;
  }
}

@media (max-width:480px) {
  .logo-col img {
    width: 140px;
  }
}


/* @keyframes fadeSlideIn {
  from {
    transform: translateY(10px); 
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
} */

@keyframes fadeInUp {
0% {
    opacity: 0;
    transform: translateY(30px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

/* Thank You Page Styles */
.thank-you-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fff, #fbfdfe);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container);
}

.thank-you-card {
  width: 100%;
  max-width: 700px;
  background: var(--white);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease;
  margin: 0 auto;
  position: relative;
}

.success-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.success-icon svg {
  width: 80px;
  height: 80px;
  stroke: #10b981;
  stroke-width: 2;
}

.thank-you-title {
  font-size: var(--font-size);
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 20px 0;
  color: var(--black);
}

.thank-you-message {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px auto;
  max-width: 500px;
}

.thank-you-message strong {
  color: var(--black);
  font-weight: 700;
}

.emergency-contact {
  background: var(--card-bg);
  padding: 30px 25px;
  border-radius: 12px;
  margin: 0 auto 40px auto;
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 400px;
}

.emergency-contact h3 {
  color: var(--black);
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

.phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.phone-number {
  color: #D71538;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.emergency-note {
  color: var(--muted);
  margin: 10px 0 0 0;
  font-size: 14px;
  font-weight: 600;
}

.action-buttons {
  margin: 0 auto 30px auto;
  display: flex;
  justify-content: center;
}

.redirect-message {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.redirect-message #countdown {
  color: #D71538;
  font-weight: 700;
}

/* Responsive styles for thank you page */
@media (max-width: 1024px) {
  .thank-you-section {
    padding: 60px 15px;
    min-height: calc(100vh - 150px);
  }
  
  .thank-you-card {
    max-width: 600px;
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .thank-you-section {
    padding: 40px 15px !important;
    min-height: calc(100vh - 120px) !important;
  }
  
  .thank-you-section .container {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .thank-you-card {
    padding: 40px 30px !important;
    margin: 0 !important;
    max-width: none !important;
    border-radius: 16px !important;
    width: calc(100% - 30px) !important;
  }
  
  .thank-you-title {
    font-size: 32px !important;
  }
  
  .thank-you-message {
    font-size: 16px !important;
  }
  
  .phone-number {
    font-size: 20px !important;
  }
  
  .emergency-contact {
    padding: 20px !important;
    max-width: none !important;
  }
}

@media (max-width: 480px) {
  .thank-you-section {
    padding: 20px 10px !important;
    min-height: calc(100vh - 100px) !important;
  }
  
  .thank-you-card {
    padding: 30px 20px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    width: calc(100% - 20px) !important;
  }
  
  .thank-you-title {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }
  
  .success-icon {
    margin-bottom: 20px !important;
  }
  
  .success-icon svg {
    width: 60px !important;
    height: 60px !important;
  }
  
  .thank-you-message {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }
  
  .phone-display {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  .emergency-contact {
    padding: 18px !important;
    margin-bottom: 30px !important;
  }
  
  .emergency-contact h3 {
    font-size: 18px !important;
  }
  
  .phone-number {
    font-size: 18px !important;
  }
}

