/* ============================================================
   MAIN.CSS — Global: Variables · Reset · Utilities · Header · Footer
   ============================================================ */

/* ----------------------------------------
   Google Fonts
   ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Tiro+Bangla&display=swap');

/* ----------------------------------------
   CSS Custom Properties
   ---------------------------------------- */
:root {
  /* — Colors — */
  --clr-white:       #ffffff;
  --clr-bg-page:     #ffffff;
  --clr-bg-header:   #fafcfa;
  --clr-bg-cream:    #f0efeb;
  --clr-bg-dark:     #2c2c2c;
  --clr-bg-medium:   #5b5b5b;

  --clr-text-dark:   #2c2c2c;
  --clr-text-mid:    #5b5b5b;
  --clr-text-light:  #9f9da0;
  --clr-text-white:  #fafcfa;

  --clr-accent:      #de8196;
  --clr-border:      #9f9da0;
  --clr-border-light:#e5e7eb;
  --clr-divider:     #e6e9ee;

  /* — Typography — */
  --font-body:       'Inter', sans-serif;
  --font-display:    'Tiro Bangla', serif;

  /* — Spacing — */
  --space-xs:        0.5rem;    /*  8px */
  --space-sm:        0.75rem;   /* 12px */
  --space-md:        1rem;      /* 16px */
  --space-lg:        1.5rem;    /* 24px */
  --space-xl:        2rem;      /* 32px */
  --space-2xl:       3rem;      /* 48px */
  --space-3xl:       4rem;      /* 64px */

  /* — Layout — */
  --max-width:       90rem;     /* 1440px */
  --pad-side:        2.875rem;  /* 46px  */
  --pad-side-md:     2rem;      /* 32px  */
  --pad-side-sm:     1.5rem;    /* 24px  */

  /* — Components — */
  --header-height:   5.125rem;  /* 82px = 10+62+10 */
  --btn-height:      3.875rem;  /* 62px */
  --btn-height-sm:   3rem;      /* 48px */
  --input-height:    2.375rem;  /* 54px */
  --radius-sm:       0.3125rem; /* 5px  */
  --radius-md:       0.5625rem; /* 9px  */
  --radius-lg:       0.75rem;   /* 12px */
}

/* ----------------------------------------
   Reset
   ---------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-text-dark);
  background-color: var(--clr-bg-page);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;

}
select{
width: 100%;
}
ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: inherit;
}

fieldset {
  border: none;
}

/* ----------------------------------------
   Utility — Container
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

/* ----------------------------------------
   Utility — Buttons
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-height);
  padding-inline: 1.375rem; /* 22px */
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.375rem; /* 22px */
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.2s ease;
  flex-shrink: 0;
}

.btn:hover {
  filter: brightness(0.93);
}

.btn--dark {
  background: var(--clr-bg-dark);
  color: var(--clr-text-white);
}

.btn--pink {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
}

.btn--light {
  background: #eef1f6;
  color: var(--clr-text-dark);
}

.btn--full {
  width: 100%;
}

/* ============================================================
   FORM — Shared input / field styles (used globally)
   ============================================================ */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.665rem;

}

.form__field {
  position: relative;
  display: flex;
  flex-direction: column;
		margin-top: 20px;
}

/* CF7 autop injects <p> inside flex/grid containers — make them invisible to layout */
.form__row > p,
.form__field--select > p,
.form__submit-inner > p {
  margin: 0;
  display: contents;
}

/* Hide CF7-injected <br> tags */
.form__row br,
.form__field--select br,
.form__submit-inner br { display: none; }

/* CF7 control wrap — block so inputs/selects fill parent */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}


/* Hide CF7 spinner, remove disabled look on submit */
.wpcf7-spinner { display: none; }
input.wpcf7-submit { opacity: 1; cursor: pointer; }

.form__input,
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-number {
  width: 100%;
  height: var(--input-height);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-border);
  padding-inline: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-dark);
  line-height: 1.3;
  transition: border-color 0.18s ease;
}

.form__input::placeholder,
.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-tel::placeholder { color: transparent; }

.form__input:focus,
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus {
  outline: none;
  border-bottom-color: var(--clr-text-dark);
}

.form__field--select {
		margin-top: 20px;
  flex-direction: row;
  align-items: center;
  height: var(--input-height);
  border-bottom: 1px solid var(--clr-border);
}

.form__select {
  flex: 1;
  height: 100%;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-mid);
  cursor: pointer;
  padding-inline: 0.25rem;
  -webkit-appearance: none;
  appearance: none;
}

.form__select:focus { color: var(--clr-text-dark); outline: none; }
.form__select option { color: var(--clr-text-dark); background: var(--clr-bg-cream); }

.form__chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form__submit-row { padding-top: 1rem; }

.hero .form__submit-inner,
.sa-hero .form__submit-inner,
.sov-hero  .form__submit-inner {flex-direction: column; }


.hero .form__submit-row .btn,
.sa-hero .form__submit-row .btn,
.sov-hero .form__submit-row .btn
{
width: 100%;
}
.form__submit-inner {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.form__submit-inner > .btn { flex: 1; }

/* CF7 acceptance — privacy checkbox */
.wpcf7-acceptance {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #070d19;
  line-height: 1.3;
}

.wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}.wpcf7-list-item {

    margin: 0;
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
display: none;
}

/* Hide native checkbox, show custom box */
.wpcf7-acceptance input[type="checkbox"],
.form__privacy-check {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.form__privacy-box {
  position: relative;
  width: 1.333rem; height: 1.333rem;
  border-radius: 0.334rem;
  border: 1px solid rgba(17, 18, 25, 0.2);
  flex-shrink: 0;
}

label:has(.form__privacy-check:checked) .form__privacy-box,
.wpcf7-acceptance label:has(input:checked) .form__privacy-box {
  background: #070d19;
  border-color: #070d19;
}

label:has(.form__privacy-check:checked) .form__privacy-box::after,
.wpcf7-acceptance label:has(input:checked) .form__privacy-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.35rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg);
}

@media (max-width: 48rem) {
  h1 { font-size: 2.5rem; }

  .form__row { grid-template-columns: 1fr; gap: 0;}

  .form__submit-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .form__submit-inner > .btn { width: 100%; flex: none; }
}

/* ----------------------------------------
   Utility — Visually hidden (a11y)
   ---------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--clr-bg-header);
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-block: 0.625rem;
  padding-inline: var(--pad-side);
  max-width: var(--max-width);
  margin-inline: auto;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  display: block;
  height: 3.875rem;
  width: auto;
  object-fit: contain;

}

.header__nav {
  margin-left: auto;
  margin-right: 0.5rem;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 3.875rem;
  padding-inline: 1.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.01rem;
  line-height: 1.2;
  border-radius: 0.375rem;
  background-color: var(--clr-bg-cream);
  color: var(--clr-text-dark);
  transition: background-color 0.18s ease;
  white-space: nowrap;
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  background-color: #e6e5e0;
}

.header__nav-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header__nav-item--has-sub:hover .header__nav-arrow,
.header__nav-item--has-sub:focus-within .header__nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.header__dropdown {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 13rem;
  list-style: none;
  margin: 0;
  padding: 0.375rem;
  background: var(--clr-bg-header);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}

.header__nav-item--has-sub:hover .header__dropdown,
.header__nav-item--has-sub:focus-within .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-link {
  display: flex;
  align-items: center;
  height: 2.75rem;
  padding-inline: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-dark);
  border-radius: 0.375rem;
  white-space: nowrap;
  transition: background-color 0.18s ease;
}

.header__dropdown-link:hover,
.header__dropdown-link[aria-current="page"] {
  background-color: var(--clr-bg-cream);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.875rem;
  padding-inline: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: -0.01rem;
  line-height: 1.2;
  border-radius: 0.375rem;
  background-color: var(--clr-bg-cream);
  color: var(--clr-text-dark);
  transition: background-color 0.18s ease;
}

.header__phone:hover,
.header__phone:focus-visible {
  background-color: #e6e5e0;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background-color: var(--clr-text-dark);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-nav {
  background-color: var(--clr-bg-header);
  padding: 0.75rem var(--pad-side) 1.25rem;
  border-top: 1px solid var(--clr-border-light);
}

.header__mobile-nav[hidden] {
  display: none;
}

.header__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.header__mobile-item {
  display: flex;
  flex-direction: column;
}

.header__mobile-row {
  display: flex;
  align-items: center;
}

.header__mobile-row .header__mobile-link {
  flex: 1;
}

.header__mobile-link {
  display: flex;
  align-items: center;
  height: 3rem;
  padding-inline: 1rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--clr-text-dark);
  border-radius: 0.375rem;
  transition: background-color 0.18s;
}

.header__mobile-link:hover {
  background-color: var(--clr-bg-cream);
}

.header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  color: var(--clr-text-dark);
  border-radius: 0.375rem;
  transition: background-color 0.18s, transform 0.2s ease;
}

.header__mobile-toggle:hover {
  background-color: var(--clr-bg-cream);
}

.header__mobile-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}

.header__mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.header__mobile-sub[hidden] {
  display: none;
}

.header__mobile-sub-link {
  display: flex;
  align-items: center;
  height: 2.75rem;
  padding-inline: 1rem;
  font-size: 1rem;
  color: var(--clr-text-mid);
  border-radius: 0.375rem;
  transition: background-color 0.18s;
}

.header__mobile-sub-link:hover {
  background-color: var(--clr-bg-cream);
  color: var(--clr-text-dark);
}

.header__mobile-cta {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  height: 3.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-bg-dark);
  border-radius: 1rem 1rem 0 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
  padding-block: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: #f0efeb;
  flex-shrink: 0;
}

.footer__columns {
  display: grid;
  grid-template-columns: 24.5rem 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 1rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.footer__logo {
  height: 3.875rem;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.footer__tagline {
  font-size: 1rem;
  color: #f0efeb;
  line-height: 1.5;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 1.25rem;
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 0.875rem;
  color: #f0efeb;
  line-height: 1.4;
}

a.footer__contact-text:hover {
  text-decoration: underline;
}

.footer__col-title {
  font-size: 1.625rem;
  font-weight: 400;
  color: #f0efeb;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-link {
  font-size: 1rem;
  color: #f0efeb;
  line-height: 1.5;
  display: block;
  transition: opacity 0.2s;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__copy {
  font-size: 0.875rem;
  color: #f0efeb;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.875rem;
  color: #f0efeb;
  transition: opacity 0.2s;
}

.footer__legal-link:hover {
  opacity: 0.7;
}

/* ============================================================
   RESPONSIVE — Global variables & Header & Footer
   ============================================================ */
@media (max-width: 80rem) {
  :root { --pad-side: 2rem; }
  .footer__columns { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

@media (max-width: 64rem) {
  :root { --pad-side: 1.75rem; }
  .footer__columns { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 73.3125rem) {
  .header__nav,
  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }

	
}

@media (max-width: 48rem) {
  :root {
    --pad-side: 1.25rem;
    --header-height: 4rem;
    --btn-height: 3.25rem;
  }
.form__input::placeholder,
.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-tel::placeholder { color: black; }

.form__field{
	font-size: 0;
}
.form__field--select{
	font-size: 16px;
}
  .header__inner {
    padding-block: 0;
  }

  .footer {
    border-radius: 0.75rem 0.75rem 0 0;
  }

  .footer__columns {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ============================================================
   AREAS — shared across home, services-overview, service-areas
   ============================================================ */
.areas {
  background: var(--clr-bg-cream);
  padding-block: 7.5rem;
}

.areas__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-side);
  display: grid;
  grid-template-columns: 51.875rem 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.areas__card {
  background: #fafcfa;
  border-radius: var(--radius-md);
  padding: 1.6875rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 48.875rem;
}

.areas__card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.areas__title {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  line-height: 1.1;
  letter-spacing: -0.1rem;
}

.areas__subtitle {
  font-size: 1.2rem;
  color: var(--clr-text-mid);
  line-height: 1.4;
}

.areas__map {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #d3ddd0;
  min-height: 0;
  max-width: 53.125rem;
}

.areas__map iframe,
.areas__map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.areas__btn {
  align-self: flex-start;
}

.areas__list-col {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 1.6875rem;
  display: flex;
  flex-direction: column;
}

.areas__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.areas__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.areas__item-row {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.areas__icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--clr-bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.areas__city {
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1;
}

.areas__divider {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
}

.areas__item:last-child .areas__divider {
  display: none;
}

@media (max-width: 80rem) {
  .areas__inner { grid-template-columns: 1fr 1fr; }
  .areas__title { font-size: 2.75rem; }
}

@media (max-width: 64rem) {
  .areas__inner { grid-template-columns: 1fr; }
  .areas__card { min-height: unset; }
  .areas__map { min-height: 18rem; }
  .areas__title { font-size: 2.25rem; }
}

@media (max-width: 48rem) {
  .areas { padding-block: 4rem; }
  .areas__title { font-size: 2rem; letter-spacing: -0.06rem; }
  .areas__card { padding: 1.25rem; gap: 1.5rem; }
  .areas__list-col { padding: 1.25rem; }
}

/* ============================================================
   FAQ — shared across home, services-overview, service-areas
   ============================================================ */
.faq {
  background: var(--clr-bg-cream);
  padding-block: 7.5rem;
}

.faq__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: var(--pad-side);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.625rem;
}

.faq__title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  line-height: 1.1;
  letter-spacing: -0.1rem;
  text-align: center;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq__item {
  background: #fafcfa;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.40625rem 1.6875rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question-text {
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--clr-text-mid);
  line-height: 1.3;
  flex: 1;
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--clr-bg-cream);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq__icon svg {
  transition: transform 0.3s ease;
}

.faq__item--open .faq__icon svg {
  transform: rotate(45deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  padding-inline: 1.6875rem;
  padding-bottom: 0;
  transition: padding-bottom 0.3s ease;
}

.faq__item--open .faq__answer-inner {
  padding-bottom: 1.5rem;
}

.faq__answer-inner p {
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1.6;
}

@media (max-width: 48rem) {
  .faq { padding-block: 4rem; }
  .faq__title { font-size: 2.25rem; letter-spacing: -0.06rem; }
  .faq__question-text { font-size: 1.125rem; }
}


/* ============================================================
   THANK YOU OVERLAY — shown after CF7 form submission
   ============================================================ */
.ty-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--pad-side);
  overflow-y: auto;
}

.ty-overlay[hidden] { display: none; }

.ty-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/06/Picture.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.ty-overlay__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ty-overlay__title {
  font-size: 4.5rem;          /* 72px */
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.1;
  letter-spacing: -0.1875rem;
  margin-bottom: 1.375rem;    /* 22px — gap to first text */
}

.ty-overlay__desc,
.ty-overlay__urgent {
  font-size: 1.375rem;        /* 22px */
  font-weight: 600;
  color: #5b5b5b;
  line-height: 1.4;
}

.ty-overlay__desc {
  margin-bottom: 2.25rem;     /* gap between two text paragraphs */
}

.ty-overlay__urgent {
  margin-bottom: 4.5rem;      /* 72px — space before button */
}

.ty-overlay__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29.5625rem;          /* 473px */
  height: 3.875rem;           /* 62px */
  background: #de8196;
  color: #fafcfa;
  font-family: var(--font-display);
  font-size: 1.375rem;        /* 22px */
  font-weight: 400;
  border-radius: 0.3125rem;   /* 5px */
  text-decoration: none;
  padding-inline: 1.375rem;   /* 22px */
  flex-shrink: 0;
}

.ty-overlay__btn:hover {
  filter: brightness(1.08);
}

.estimate-section .estimate-section__title{
	    max-width: 448px;
}

@media (max-width: 64rem) {
  .ty-overlay__title {
    font-size: 3rem;
    letter-spacing: -0.1rem;
  }
}

@media (max-width: 48rem) {
  .ty-overlay {
    padding-inline: 1.25rem;
  }

  .ty-overlay__title {
    font-size: 2.25rem;
    letter-spacing: -0.05rem;
    margin-bottom: 1rem;
  }

  .ty-overlay__desc,
  .ty-overlay__urgent {
    font-size: 1.125rem;
  }

  .ty-overlay__urgent {
    margin-bottom: 2.5rem;
  }

  .ty-overlay__btn {
    width: 100%;
    max-width: 20rem;
  }
}