:root {
  --primary-dark: #1F3B4D;   /* Deep Slate Blue – professional & strong */
  --primary-light: #4A90E2;  /* Soft Sky Blue – approachable accent */
  --accent-yellow: #FFC857;  /* Warm Gold – highlights & CTAs */
  --neutral-light: #F4F4F9;  /* Clean light background */
  --neutral-dark: #2B2B2B;   /* Text & headings */
  --accent-orange: #FF6B35;  /* Energetic call-to-action or hover color */
  --line: #E0E0E0;            /* Divider lines */
  --white: #FFFFFF;           /* Neutral white */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

.promo-bar {
  position: relative;
  z-index: 10;
  height: 44px;
  background: #1f2024;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 56px;
  font-size: 16px;
  line-height: 1.25;
}

.promo-bar p {
  margin: 0;
}

.promo-bar strong {
  font-weight: 800;
}

.promo-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #bfc0c4;
  font-size: 30px;
  line-height: 20px;
  cursor: pointer;
  font-weight: 200;
}

.page-shell {
  min-height: calc(100vh - 44px);
}

/*hero section*/
:root {
  --primary-dark: #1F3B4D;
  --primary-light: #4A90E2;
  --accent-yellow: #FFC857;
  --neutral-light: #F4F4F9;
  --neutral-dark: #2B2B2B;
  --accent-orange: #FF6B35;
  --line: #E0E0E0;
  --white: #FFFFFF;
}

/* Promo Bar */

.promo-bar {
  position: relative;
  z-index: 50;
  min-height: 52px;
  padding: 12px 58px 12px 24px;
  background:
    linear-gradient(90deg, var(--primary-dark), #172d3b 55%, var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(31, 59, 77, 0.18);
  overflow: hidden;
}

.promo-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 200, 87, 0.22), transparent 24%),
    radial-gradient(circle at 88% 50%, rgba(74, 144, 226, 0.2), transparent 26%);
  pointer-events: none;
}

.promo-bar p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.promo-bar p span {
  display: inline-flex;
  margin-right: 6px;
}

.promo-bar strong {
  color: var(--accent-yellow);
  font-weight: 950;
}

.promo-close {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) rotate(90deg);
}

/* Hero */

.page-shell {
  background: var(--primary-dark);
}

.hero {
  min-height: calc(100vh - 52px);
  display: grid;
  grid-template-columns: 52% 48%;
  background:
    radial-gradient(circle at 10% 14%, rgba(74, 144, 226, 0.2), transparent 30%),
    linear-gradient(135deg, #102330, var(--primary-dark));
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  min-height: calc(100vh - 52px);
  overflow: hidden;
  background: var(--primary-dark);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(16, 35, 48, 0.1), rgba(16, 35, 48, 0.05), rgba(16, 35, 48, 0.46)),
    linear-gradient(180deg, transparent 48%, rgba(16, 35, 48, 0.36));
  pointer-events: none;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 8%;
  z-index: 3;
  width: 160px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-image-badge {
  position: absolute;
  z-index: 4;
  left: 44px;
  bottom: 44px;
  width: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(31, 59, 77, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-image-badge span {
  display: block;
  color: var(--accent-yellow);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.hero-image-badge p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 70px 58px 42px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 200, 87, 0.18), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(74, 144, 226, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, var(--white) 50%, var(--neutral-light) 100%);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 36px;
  pointer-events: none;
}

.content-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
}

.logo {
  display: block;
  width: 190px;
  max-width: 74%;
  height: auto;
  margin: 0 0 26px;
}

.rating-row {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 9px;
  padding: 10px 15px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(31, 59, 77, 0.07);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  color: var(--accent-yellow);
  letter-spacing: -1px;
  font-size: 21px;
  line-height: 1;
}

.rating-copy {
  color: var(--primary-dark);
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
}

.rating-note {
  margin: 0 0 26px;
  color: rgba(43, 43, 43, 0.58);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

h1 {
  margin: 0 0 21px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 0.98;
  letter-spacing: -2.4px;
  font-weight: 950;
}

h1 span {
  display: block;
  color: var(--accent-orange);
}

.intro {
  margin: 0 0 30px;
  max-width: 600px;
  color: rgba(43, 43, 43, 0.72);
  font-size: 20px;
  line-height: 1.58;
  font-weight: 400;
}

.mobile-photo {
  display: none;
}

.hero-action-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(31, 59, 77, 0.1);
  backdrop-filter: blur(16px);
}

.call-btn {
  width: 100%;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  border-radius: 999px;
  text-decoration: none;
  font-size: 19px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(255, 107, 53, 0.32);
}

.call-btn svg,
.mobile-sticky svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.trust-line {
  width: 100%;
  margin: 15px 0 22px;
  text-align: center;
  color: rgba(43, 43, 43, 0.64);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 750;
}

.divider {
  position: relative;
  width: 100%;
  height: 18px;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(43, 43, 43, 0.52);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: rgba(31, 59, 77, 0.1);
  flex: 1;
}

.divider span {
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.84);
}

.zip-form,
.info-form {
  width: 100%;
}

.zip-form label {
  display: block;
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
}

.zip-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.input-wrap {
  position: relative;
  flex: 1 1 auto;
}

.input-wrap input,
.info-form input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(31, 59, 77, 0.13);
  border-radius: 18px;
  padding: 0 45px 0 17px;
  background: var(--white);
  color: var(--primary-dark);
  font-size: 16px;
  outline: none;
  transition: border 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.input-wrap input::placeholder,
.info-form input::placeholder {
  color: rgba(43, 43, 43, 0.45);
}

.input-wrap input:focus,
.info-form input:focus {
  border-color: rgba(74, 144, 226, 0.55);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.12);
}

.zip-icon,
.field-icon {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 20px;
}

.zip-icon::before,
.zip-icon::after,
.field-icon::before,
.field-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 3px;
  height: 18px;
  background: rgba(255, 107, 53, 0.7);
  border-radius: 1px;
}

.zip-icon::before,
.field-icon::before {
  left: 0;
}

.zip-icon::after,
.field-icon::after {
  right: 0;
  height: 10px;
  top: 5px;
}

.zip-row button {
  flex: 0 0 132px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.zip-row button span {
  color: var(--accent-yellow);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.zip-row button:hover,
.info-form button:hover {
  background: #102330;
  transform: translateY(-2px);
}

.form-message {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 800;
}

.info-form {
  display: none;
}

.zip-preview {
  margin: 0 0 16px;
  color: rgba(43, 43, 43, 0.62);
  font-size: 15px;
  font-weight: 700;
}

.zip-preview strong {
  color: var(--primary-dark);
  font-weight: 950;
}

.zip-preview a {
  color: var(--accent-orange);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  margin-left: 7px;
}

.info-field {
  position: relative;
  margin-bottom: 13px;
}

.info-form button {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-form button:hover {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  box-shadow: 0 24px 55px rgba(255, 107, 53, 0.28);
}

/* Benefits Bar */

.roof-benefits-bar {
  position: relative;
  width: 100%;
  background: #102330;
  color: var(--white);
  overflow: hidden;
}

.roof-benefits-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 200, 87, 0.18), transparent 26%),
    radial-gradient(circle at 76% 50%, rgba(74, 144, 226, 0.18), transparent 26%);
  pointer-events: none;
}

.benefits-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 126px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(255, 107, 53, 0.22);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.benefit-item h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.benefit-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(255, 200, 87, 0.42), transparent);
}

.mobile-sticky {
  display: none;
}

/* Tablet */

@media (min-width: 901px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: 48% 52%;
  }

  .hero-content {
    padding: 48px 44px 48px 24px;
  }

  h1 {
    font-size: 46px;
  }

  .intro {
    font-size: 18px;
  }
}

/* Mobile */

@media (max-width: 900px) {
  body {
    padding-bottom: 78px;
  }

  .promo-bar {
    min-height: 70px;
    padding: 12px 50px 12px 16px;
    justify-content: flex-start;
  }

  .promo-bar p {
    text-align: left;
    font-size: 14px;
  }

  .promo-close {
    right: 10px;
  }

  .page-shell,
  .hero,
  .hero-image-wrap {
    min-height: auto;
  }

  .hero {
    display: block;
    background:
      radial-gradient(circle at 88% 8%, rgba(255, 200, 87, 0.22), transparent 30%),
      linear-gradient(135deg, #f8fbff 0%, var(--white) 52%, var(--neutral-light) 100%);
  }

  .hero-image-wrap {
    display: none;
  }

  .hero-content {
    display: block;
    padding: 44px 16px 28px;
  }

  .hero-content::before {
    inset: 12px;
    border-radius: 24px;
  }

  .content-inner {
    width: 100%;
  }

  .logo {
    width: 154px;
    max-width: 90%;
    margin-bottom: 22px;
  }

  .rating-row {
    gap: 9px;
    padding: 9px 13px;
  }

  .stars {
    font-size: 18px;
  }

  .rating-copy {
    font-size: 13px;
  }

  .rating-note {
    font-size: 12.5px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.03;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
  }

  .intro {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .mobile-photo {
    display: block;
    overflow: hidden;
    border-radius: 26px;
    margin: 0 0 20px;
    border: 1px solid rgba(31, 59, 77, 0.1);
    box-shadow: 0 24px 70px rgba(31, 59, 77, 0.12);
  }

  .mobile-photo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-action-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .call-btn {
    height: 61px;
    font-size: 18px;
  }

  .zip-row {
    flex-direction: column;
    width: 100%;
  }

  .zip-row button {
    width: 100%;
    flex: none;
  }

  .roof-benefits-bar {
    padding: 0;
  }

  .benefits-inner {
    min-height: auto;
    padding: 26px 16px;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }

  .benefit-item {
    justify-content: flex-start;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 17px;
  }

  .benefit-item h3 {
    font-size: 22px;
  }

  .benefit-item p {
    font-size: 15px;
  }

  .benefit-divider {
    display: none;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(31, 59, 77, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(31, 59, 77, 0.22);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky a {
    height: 52px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    font-weight: 950;
  }

  .sticky-call {
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: var(--primary-dark) !important;
  }

  .sticky-call svg {
    width: 19px;
    height: 19px;
  }

  .sticky-estimate {
    background: var(--primary-dark);
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 35px;
  }

  .intro {
    font-size: 17px;
  }

  .hero-action-panel {
    padding: 16px;
  }

  .call-btn,
  .info-form button {
    font-size: 16.5px;
  }

  .mobile-sticky a {
    font-size: 13px;
  }
}
/* Roof Problems Section */

.roof-problems-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(74, 144, 226, 0.16), transparent 32%),
    radial-gradient(circle at 94% 18%, rgba(255, 200, 87, 0.22), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #f4f4f9 100%);
  padding: 105px 0 72px;
}

.roof-problems-section::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 38px;
  pointer-events: none;
}

.roof-problems-section::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.24), rgba(255, 107, 53, 0.12));
  filter: blur(4px);
  pointer-events: none;
}

.roof-problems-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 52px;
}

.section-heading .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.22);
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(42px, 4vw, 70px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -2.4px;
}

.section-heading h2 span {
  display: block;
  color: var(--accent-orange);
}

.section-heading p {
  position: relative;
  max-width: 720px;
  margin: 0;
  color: rgba(43, 43, 43, 0.72);
  font-size: 21px;
  line-height: 1.62;
  font-weight: 400;
}

.section-heading p::before {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.problem-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(31, 59, 77, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.problem-card:nth-child(1),
.problem-card:nth-child(6) {
  grid-column: span 5;
}

.problem-card:nth-child(2),
.problem-card:nth-child(3),
.problem-card:nth-child(4),
.problem-card:nth-child(5) {
  grid-column: span 3.5;
}

.problem-card:nth-child(2),
.problem-card:nth-child(3),
.problem-card:nth-child(4),
.problem-card:nth-child(5) {
  grid-column: span 3;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-yellow), var(--accent-orange));
  transform: scaleX(0.35);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.problem-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.08);
  transition: transform 0.35s ease, background 0.35s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.32);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(31, 59, 77, 0.14);
}

.problem-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.problem-card:hover::after {
  transform: scale(1.18);
  background: rgba(255, 200, 87, 0.18);
}

.problem-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(31, 59, 77, 0.22);
}

.problem-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-yellow);
  border: 5px solid var(--white);
}

.problem-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.problem-card > div:last-child {
  position: relative;
  z-index: 2;
}

.problem-card h3 {
  max-width: 390px;
  margin: 0 0 13px;
  color: var(--primary-dark);
  font-size: 24px;
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.problem-card p {
  max-width: 500px;
  margin: 0;
  color: rgba(43, 43, 43, 0.68);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
}

.section-bottom-text {
  position: relative;
  max-width: 980px;
  margin: 44px auto 0;
  padding: 26px 34px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(31, 59, 77, 0.96), rgba(31, 59, 77, 0.88));
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 22px 60px rgba(31, 59, 77, 0.18);
}

.section-bottom-text strong {
  color: var(--accent-yellow);
  font-weight: 950;
}

/* Tablet */

@media (max-width: 1100px) {
  .roof-problems-section {
    padding: 86px 0 58px;
  }

  .roof-problems-container {
    padding: 0 36px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading p {
    max-width: 850px;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-card,
  .problem-card:nth-child(1),
  .problem-card:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card:nth-child(4),
  .problem-card:nth-child(5),
  .problem-card:nth-child(6) {
    grid-column: auto;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .roof-problems-section {
    padding: 72px 0 44px;
  }

  .roof-problems-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .roof-problems-container {
    padding: 0 16px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-heading .eyebrow {
    font-size: 12px;
    padding: 9px 13px;
    margin-bottom: 15px;
  }

  .section-heading h2 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .section-heading p {
    font-size: 18px;
    line-height: 1.55;
  }

  .section-heading p::before {
    width: 70px;
    height: 4px;
    margin-bottom: 18px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .problem-card {
    min-height: auto;
    padding: 25px;
    border-radius: 24px;
    gap: 28px;
  }

  .problem-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
  }

  .problem-icon svg {
    width: 28px;
    height: 28px;
  }

  .problem-card h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .problem-card p {
    font-size: 16.5px;
    line-height: 1.58;
  }

  .section-bottom-text {
    margin-top: 30px;
    padding: 23px 20px;
    border-radius: 20px;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .section-heading h2 {
    font-size: 37px;
  }

  .section-heading p {
    font-size: 17px;
  }

  .problem-card {
    padding: 22px;
  }

  .problem-card h3 {
    font-size: 20px;
  }

  .problem-card p {
    font-size: 16px;
  }
}

/* Urgent Roof Section */

.urgent-roof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(74, 144, 226, 0.24), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(255, 200, 87, 0.22), transparent 34%),
    linear-gradient(135deg, #1F3B4D 0%, #172d3b 52%, #102330 100%);
  color: var(--white);
  padding: 96px 0;
}

.urgent-roof-section::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 36px;
  pointer-events: none;
}

.urgent-roof-section::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.26), rgba(255, 107, 53, 0.1));
  filter: blur(2px);
  pointer-events: none;
}

.urgent-roof-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.urgent-content {
  max-width: 650px;
}

.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  padding: 11px 17px;
  border: 1px solid rgba(255, 200, 87, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(14px);
}

.urgent-badge span {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 7px rgba(255, 200, 87, 0.13);
}

.urgent-badge span::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 200, 87, 0.45);
  animation: urgentPulse 1.7s ease-out infinite;
}

@keyframes urgentPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.urgent-roof-section h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -2.8px;
}

.urgent-roof-section h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.urgent-subtitle {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.56;
  font-weight: 400;
}

.urgent-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.urgent-card {
  position: relative;
  min-height: 154px;
  padding: 26px 30px 26px 118px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.urgent-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 82px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 200, 87, 0.42), transparent);
}

.urgent-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.08);
  transition: transform 0.35s ease, background 0.35s ease;
}

.urgent-card:hover {
  transform: translateX(8px);
  border-color: rgba(255, 200, 87, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.urgent-card:hover::after {
  transform: scale(1.22);
  background: rgba(255, 107, 53, 0.13);
}

.urgent-icon {
  position: absolute;
  left: 28px;
  top: 28px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(255, 107, 53, 0.22);
}

.urgent-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.urgent-card span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 9px;
  color: var(--accent-yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.urgent-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.urgent-card p {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.48;
  font-weight: 400;
}

.urgent-cta-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.urgent-call-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 292px;
  height: 68px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 21px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.26);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urgent-call-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.urgent-call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(255, 107, 53, 0.34);
}

.urgent-call-btn:hover::before {
  opacity: 1;
}

.urgent-call-btn svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.urgent-note {
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.urgent-note svg {
  width: 21px;
  height: 21px;
  color: var(--accent-yellow);
  flex: 0 0 auto;
}

/* Tablet */

@media (max-width: 1100px) {
  .urgent-roof-section {
    padding: 82px 0;
  }

  .urgent-roof-container {
    padding: 0 36px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .urgent-content {
    max-width: 800px;
  }

  .urgent-subtitle {
    max-width: 760px;
  }

  .urgent-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .urgent-card {
    min-height: 245px;
    padding: 26px;
  }

  .urgent-card::before {
    left: 26px;
    top: 92px;
    width: calc(100% - 52px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 87, 0.42), transparent);
  }

  .urgent-icon {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 42px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .urgent-roof-section {
    padding: 72px 0;
  }

  .urgent-roof-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .urgent-roof-container {
    padding: 0 16px;
    gap: 36px;
  }

  .urgent-badge {
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
  }

  .urgent-roof-section h2 {
    font-size: 43px;
    line-height: 1;
    letter-spacing: -1.6px;
    margin-bottom: 21px;
  }

  .urgent-roof-section h2::after {
    width: 78px;
    height: 5px;
    margin-top: 22px;
  }

  .urgent-subtitle {
    font-size: 18px;
    line-height: 1.55;
  }

  .urgent-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .urgent-card {
    min-height: auto;
    padding: 24px 24px 24px 96px;
    border-radius: 24px;
  }

  .urgent-card::before {
    top: 0;
    left: 74px;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 200, 87, 0.42), transparent);
  }

  .urgent-icon {
    position: absolute;
    left: 22px;
    top: 24px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 0;
  }

  .urgent-icon svg {
    width: 25px;
    height: 25px;
  }

  .urgent-card h3 {
    font-size: 22px;
  }

  .urgent-card p {
    font-size: 16px;
    line-height: 1.48;
  }

  .urgent-cta-row {
    margin-top: 31px;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }

  .urgent-call-btn {
    width: 100%;
    min-width: 0;
    height: 64px;
    font-size: 20px;
  }

  .urgent-note {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .urgent-roof-section h2 {
    font-size: 38px;
  }

  .urgent-subtitle {
    font-size: 17px;
  }

  .urgent-card {
    padding: 22px;
  }

  .urgent-card::before {
    display: none;
  }

  .urgent-icon {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 24px;
  }

  .urgent-card h3 {
    font-size: 21px;
  }

  .urgent-call-btn {
    font-size: 18px;
  }
}

/*projects section*/

/* Repair Services Section */

.repair-services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(74, 144, 226, 0.14), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(255, 200, 87, 0.22), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #f4f4f9 100%);
  padding: 108px 0 96px;
  color: var(--neutral-dark);
}

.repair-services-section::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.13);
  pointer-events: none;
}

.repair-services-section::after {
  content: "";
  position: absolute;
  right: 42px;
  top: 42px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 32px;
  transform: rotate(12deg);
  pointer-events: none;
}

.repair-services-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.repair-services-heading {
  max-width: 1060px;
  margin: 0 auto 58px;
  text-align: center;
}

.repair-services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.24);
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.repair-services-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.12);
}

.repair-services-heading h2 {
  max-width: 920px;
  margin: 0 auto 21px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2.2px;
}

.repair-services-heading h2 span {
  color: var(--accent-orange);
}

.repair-services-heading p {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(43, 43, 43, 0.7);
  font-size: 21px;
  line-height: 1.62;
  font-weight: 400;
}

.repair-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.repair-service-card {
  position: relative;
  min-height: 286px;
  padding: 30px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 65px rgba(31, 59, 77, 0.08);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.repair-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74, 144, 226, 0.12), transparent 42%),
    radial-gradient(circle at 86% 14%, rgba(255, 200, 87, 0.24), transparent 24%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.repair-service-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-yellow), var(--accent-orange));
  transform: scaleX(0.25);
  transform-origin: left;
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.repair-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.32);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 85px rgba(31, 59, 77, 0.14);
}

.repair-service-card:hover::before {
  opacity: 1;
}

.repair-service-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.repair-service-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  box-shadow: 0 16px 36px rgba(31, 59, 77, 0.22);
}

.repair-service-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--accent-yellow);
  border: 5px solid var(--white);
}

.repair-service-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.repair-service-number {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 2;
  color: rgba(31, 59, 77, 0.1);
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
}

.repair-service-card h3 {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 0 0 13px;
  color: var(--primary-dark);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.repair-service-card p {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 0;
  color: rgba(43, 43, 43, 0.66);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 400;
}

.repair-services-buttons {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.repair-call-btn,
.repair-estimate-btn {
  min-width: 246px;
  height: 64px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.repair-call-btn {
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  border: 1px solid transparent;
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.24);
}

.repair-call-btn svg {
  width: 23px;
  height: 23px;
}

.repair-call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(255, 107, 53, 0.32);
}

.repair-estimate-btn {
  background: rgba(255, 255, 255, 0.75);
  color: var(--primary-dark);
  border: 1px solid rgba(31, 59, 77, 0.18);
  box-shadow: 0 14px 34px rgba(31, 59, 77, 0.08);
}

.repair-estimate-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-4px);
}

/* Tablet */

@media (max-width: 1100px) {
  .repair-services-section {
    padding: 88px 0 76px;
  }

  .repair-services-container {
    padding: 0 36px;
  }

  .repair-services-heading {
    margin-bottom: 44px;
  }

  .repair-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .repair-services-section {
    padding: 72px 0 64px;
  }

  .repair-services-section::after {
    display: none;
  }

  .repair-services-container {
    padding: 0 16px;
  }

  .repair-services-heading {
    text-align: left;
    margin-bottom: 36px;
  }

  .repair-services-kicker {
    font-size: 12px;
    padding: 9px 14px;
    margin-bottom: 16px;
  }

  .repair-services-heading h2 {
    font-size: 39px;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
  }

  .repair-services-heading p {
    font-size: 18px;
    line-height: 1.55;
  }

  .repair-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .repair-service-card {
    min-height: auto;
    padding: 25px;
    border-radius: 24px;
  }

  .repair-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 32px;
  }

  .repair-service-icon svg {
    width: 27px;
    height: 27px;
  }

  .repair-service-number {
    top: 24px;
    right: 25px;
    font-size: 46px;
  }

  .repair-service-card h3 {
    font-size: 22px;
    line-height: 1.15;
  }

  .repair-service-card p {
    font-size: 16.5px;
    line-height: 1.56;
  }

  .repair-services-buttons {
    margin-top: 38px;
    flex-direction: column;
    gap: 14px;
  }

  .repair-call-btn,
  .repair-estimate-btn {
    width: 100%;
    min-width: 0;
    height: 62px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .repair-services-heading h2 {
    font-size: 35px;
  }

  .repair-services-heading p {
    font-size: 17px;
  }

  .repair-service-card {
    padding: 22px;
  }

  .repair-service-card h3 {
    font-size: 21px;
  }

  .repair-service-card p {
    font-size: 16px;
  }

  .repair-call-btn,
  .repair-estimate-btn {
    font-size: 17px;
  }
}

/*why golden hands section*/

/* Projects Section */

.projects-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(74, 144, 226, 0.14), transparent 32%),
    radial-gradient(circle at 94% 88%, rgba(255, 200, 87, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #f4f4f9 100%);
  padding: 108px 0 112px;
  color: var(--neutral-dark);
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.projects-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.22), rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

.projects-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.projects-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.projects-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.24);
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.12);
}

.projects-heading h2 {
  margin: 0 0 20px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2.2px;
}

.projects-heading h2 span {
  color: var(--accent-orange);
}

.projects-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(43, 43, 43, 0.7);
  font-size: 21px;
  line-height: 1.62;
  font-weight: 400;
}

.projects-slider {
  margin-top: 62px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 22px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--primary-dark);
  box-shadow: 0 24px 70px rgba(31, 59, 77, 0.14);
  isolation: isolate;
  cursor: pointer;
}

.project-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-card-wide {
  grid-column: span 2;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.project-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.project-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.project-card:hover::before,
.project-card:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31, 59, 77, 0.03) 0%, rgba(31, 59, 77, 0.18) 42%, rgba(31, 59, 77, 0.92) 100%);
}

.project-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  color: var(--white);
}

.project-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.18);
  border: 1px solid rgba(255, 200, 87, 0.28);
  color: var(--accent-yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.project-location {
  margin: 0 0 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.project-location svg {
  width: 18px;
  height: 18px;
  color: var(--accent-yellow);
  flex: 0 0 auto;
}

.project-content h3 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.project-card-featured .project-content h3 {
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.9px;
}

.projects-buttons {
  margin-top: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.projects-call-btn,
.projects-estimate-btn {
  min-width: 246px;
  height: 64px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.projects-call-btn {
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  border: 1px solid transparent;
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.24);
}

.projects-call-btn svg {
  width: 23px;
  height: 23px;
}

.projects-call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(255, 107, 53, 0.32);
}

.projects-estimate-btn {
  background: rgba(255, 255, 255, 0.75);
  color: var(--primary-dark);
  border: 1px solid rgba(31, 59, 77, 0.18);
  box-shadow: 0 14px 34px rgba(31, 59, 77, 0.08);
}

.projects-estimate-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-4px);
}

/* Tablet */

@media (max-width: 1100px) {
  .projects-section {
    padding: 88px 0 84px;
  }

  .projects-container {
    padding: 0 36px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .project-card-featured,
  .project-card-wide {
    grid-column: span 2;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .projects-section {
    padding: 72px 0 70px;
  }

  .projects-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .projects-container {
    padding: 0;
  }

  .projects-heading {
    padding: 0 16px;
    text-align: left;
  }

  .projects-eyebrow {
    font-size: 12px;
    padding: 9px 14px;
    margin-bottom: 16px;
  }

  .projects-heading h2 {
    font-size: 39px;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
  }

  .projects-heading p {
    font-size: 18px;
    line-height: 1.55;
  }

  .projects-slider {
    margin-top: 38px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 18px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .projects-slider.is-dragging {
    cursor: grabbing;
  }

  .projects-slider::-webkit-scrollbar {
    height: 10px;
  }

  .projects-slider::-webkit-scrollbar-track {
    background: transparent;
  }

  .projects-slider::-webkit-scrollbar-thumb {
    background: rgba(31, 59, 77, 0.24);
    border-radius: 999px;
    border: 3px solid #f4f4f9;
  }

  .projects-grid {
    display: flex;
    gap: 16px;
    width: max-content;
  }

  .project-card,
  .project-card-featured,
  .project-card-wide {
    width: 430px;
    max-width: calc(100vw - 48px);
    height: 520px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
    border-radius: 26px;
  }

  .project-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .project-tag {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .project-location {
    font-size: 15px;
  }

  .project-content h3,
  .project-card-featured .project-content h3 {
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .projects-buttons {
    margin-top: 38px;
    padding: 0 16px;
    flex-direction: column;
    gap: 14px;
  }

  .projects-call-btn,
  .projects-estimate-btn {
    width: 100%;
    min-width: 0;
    height: 62px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .projects-heading h2 {
    font-size: 35px;
  }

  .projects-heading p {
    font-size: 17px;
  }

  .project-card,
  .project-card-featured,
  .project-card-wide {
    height: 480px;
  }

  .project-content h3,
  .project-card-featured .project-content h3 {
    font-size: 21px;
  }

  .projects-call-btn,
  .projects-estimate-btn {
    font-size: 17px;
  }
}
/*process section*/

/* Why Golden Hands Section */

.why-golden-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(74, 144, 226, 0.16), transparent 32%),
    radial-gradient(circle at 90% 82%, rgba(255, 200, 87, 0.22), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #f4f4f9 100%);
  padding: 108px 0 96px;
  color: var(--neutral-dark);
}

.why-golden-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.why-golden-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.25), rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

.why-golden-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.why-golden-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.why-golden-left {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(31, 59, 77, 0.96), rgba(31, 59, 77, 0.88)),
    var(--primary-dark);
  box-shadow: 0 28px 80px rgba(31, 59, 77, 0.18);
  overflow: hidden;
}

.why-golden-left::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.16);
}

.why-golden-left::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 130px;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.why-golden-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-golden-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 6px rgba(255, 200, 87, 0.13);
}

.why-golden-section h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2.2px;
}

.why-golden-section h2 span {
  display: block;
  color: var(--accent-yellow);
}

.why-golden-section blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--accent-orange);
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.62;
  font-style: normal;
  font-weight: 400;
}

.why-golden-stats {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.why-golden-stats div {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.why-golden-stats strong {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-yellow);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px;
}

.why-golden-stats p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.why-golden-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-golden-item {
  position: relative;
  min-height: 142px;
  padding: 26px 24px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 65px rgba(31, 59, 77, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.why-golden-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 200, 87, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(74, 144, 226, 0.1), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-golden-item::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-yellow), var(--accent-orange));
  transform: scaleX(0.25);
  transform-origin: left;
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.why-golden-item:hover {
  transform: translateY(-7px);
  border-color: rgba(74, 144, 226, 0.32);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 85px rgba(31, 59, 77, 0.13);
}

.why-golden-item:hover::before {
  opacity: 1;
}

.why-golden-item:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.why-golden-item svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.2);
}

.why-golden-item p {
  position: relative;
  z-index: 2;
  margin: 3px 0 0;
  color: var(--primary-dark);
  font-size: 19px;
  line-height: 1.42;
  font-weight: 850;
}

/* Tablet */

@media (max-width: 1100px) {
  .why-golden-section {
    padding: 88px 0 76px;
  }

  .why-golden-container {
    padding: 0 36px;
  }

  .why-golden-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-golden-left {
    max-width: 100%;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .why-golden-section {
    padding: 72px 0 64px;
  }

  .why-golden-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .why-golden-container {
    padding: 0 16px;
  }

  .why-golden-left {
    padding: 28px 24px 34px;
    border-radius: 28px;
  }

  .why-golden-badge {
    font-size: 12px;
    padding: 9px 14px;
    margin-bottom: 19px;
  }

  .why-golden-section h2 {
    font-size: 38px;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 20px;
  }

  .why-golden-section blockquote {
    padding-left: 18px;
    font-size: 18px;
    line-height: 1.58;
  }

  .why-golden-stats {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .why-golden-stats strong {
    font-size: 34px;
  }

  .why-golden-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-golden-item {
    min-height: auto;
    padding: 22px;
    border-radius: 23px;
    gap: 14px;
  }

  .why-golden-item svg {
    width: 31px;
    height: 31px;
    min-width: 31px;
    padding: 6px;
  }

  .why-golden-item p {
    font-size: 18px;
    line-height: 1.42;
  }
}

@media (max-width: 420px) {
  .why-golden-section h2 {
    font-size: 34px;
  }

  .why-golden-section blockquote {
    font-size: 17px;
  }

  .why-golden-left {
    padding: 25px 21px 32px;
  }

  .why-golden-item {
    padding: 20px;
  }

  .why-golden-item p {
    font-size: 17px;
  }
}

/* pricing section*/

/* Guarantee Section */

.guarantee-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(74, 144, 226, 0.14), transparent 32%),
    radial-gradient(circle at 88% 84%, rgba(255, 200, 87, 0.2), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f4f4f9 100%);
  padding: 92px 20px 96px;
}

.guarantee-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.guarantee-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.24), rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

.guarantee-card {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(31, 59, 77, 0.97), rgba(31, 59, 77, 0.9)),
    var(--primary-dark);
  box-shadow: 0 30px 90px rgba(31, 59, 77, 0.2);
  overflow: hidden;
  isolation: isolate;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.16);
  z-index: -1;
}

.guarantee-card::after {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(74, 144, 226, 0.2);
  z-index: -1;
}

.corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: 0.65;
  z-index: 4;
}

.corner-top-left {
  top: 24px;
  left: 24px;
  border-top: 2px solid rgba(255, 200, 87, 0.72);
  border-left: 2px solid rgba(255, 200, 87, 0.72);
}

.corner-top-right {
  top: 24px;
  right: 24px;
  border-top: 2px solid rgba(255, 200, 87, 0.72);
  border-right: 2px solid rgba(255, 200, 87, 0.72);
}

.corner-bottom-left {
  bottom: 24px;
  left: 24px;
  border-bottom: 2px solid rgba(255, 200, 87, 0.72);
  border-left: 2px solid rgba(255, 200, 87, 0.72);
}

.corner-bottom-right {
  bottom: 24px;
  right: 24px;
  border-bottom: 2px solid rgba(255, 200, 87, 0.72);
  border-right: 2px solid rgba(255, 200, 87, 0.72);
}

.guarantee-top {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 52px;
  align-items: center;
  padding: 58px 62px 50px;
}

.guarantee-top::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 87, 0.36), transparent);
}

.guarantee-badge-wrap {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 200, 87, 0.48);
  border-radius: 50%;
  animation: guaranteeSpin 18s linear infinite;
}

.guarantee-badge-wrap::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

@keyframes guaranteeSpin {
  to {
    transform: rotate(360deg);
  }
}

.guarantee-badge {
  position: relative;
  z-index: 2;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 48px rgba(255, 107, 53, 0.28);
}

.guarantee-badge strong {
  display: block;
  margin-top: -4px;
  color: var(--primary-dark);
  font-size: 68px;
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -3px;
}

.guarantee-badge span {
  margin-top: 10px;
  color: var(--primary-dark);
  font-size: 13px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-align: center;
}

.guarantee-shield {
  position: absolute;
  right: 8px;
  bottom: 26px;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--white);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.guarantee-shield svg {
  width: 32px;
  height: 32px;
}

.guarantee-copy {
  position: relative;
  z-index: 2;
}

.guarantee-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.guarantee-copy h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
}

.guarantee-text {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.58;
  font-weight: 400;
}

.guarantee-text strong {
  color: var(--accent-yellow);
  font-weight: 950;
}

.guarantee-divider {
  display: none;
}

.guarantee-points {
  padding: 34px 62px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guarantee-point {
  position: relative;
  min-height: 112px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.guarantee-point::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.guarantee-point:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 87, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.guarantee-point:hover::after {
  transform: scale(1.2);
  background: rgba(255, 107, 53, 0.14);
}

.guarantee-point span {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(255, 107, 53, 0.2);
}

.guarantee-point svg {
  width: 19px;
  height: 19px;
}

.guarantee-point p {
  position: relative;
  z-index: 2;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.38;
  font-weight: 850;
}

.guarantee-footnote {
  margin: 0;
  padding: 0 62px 54px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}

/* Tablet */

@media (max-width: 1100px) {
  .guarantee-section {
    padding: 82px 20px;
  }

  .guarantee-top {
    grid-template-columns: 190px 1fr;
    gap: 34px;
    padding: 48px 42px 42px;
  }

  .guarantee-top::after {
    left: 42px;
    right: 42px;
  }

  .guarantee-badge-wrap {
    width: 180px;
    height: 180px;
  }

  .guarantee-badge {
    width: 136px;
    height: 136px;
  }

  .guarantee-badge strong {
    font-size: 58px;
  }

  .guarantee-shield {
    right: 2px;
    bottom: 22px;
    width: 56px;
    height: 56px;
  }

  .guarantee-points {
    padding: 30px 42px 34px;
    grid-template-columns: 1fr;
  }

  .guarantee-footnote {
    padding: 0 42px 46px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .guarantee-section {
    padding: 72px 14px 70px;
  }

  .guarantee-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .guarantee-card {
    border-radius: 28px;
  }

  .corner {
    width: 20px;
    height: 20px;
  }

  .corner-top-left {
    top: 18px;
    left: 18px;
  }

  .corner-top-right {
    top: 18px;
    right: 18px;
  }

  .corner-bottom-left {
    bottom: 18px;
    left: 18px;
  }

  .corner-bottom-right {
    bottom: 18px;
    right: 18px;
  }

  .guarantee-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 24px 36px;
    text-align: center;
  }

  .guarantee-top::after {
    left: 24px;
    right: 24px;
  }

  .guarantee-badge-wrap {
    width: 168px;
    height: 168px;
    margin: 0 auto;
  }

  .guarantee-badge {
    width: 126px;
    height: 126px;
  }

  .guarantee-badge strong {
    font-size: 54px;
  }

  .guarantee-badge span {
    font-size: 11px;
  }

  .guarantee-shield {
    right: -2px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 17px;
  }

  .guarantee-shield svg {
    width: 28px;
    height: 28px;
  }

  .guarantee-eyebrow {
    margin: 0 auto 17px;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 9px 13px;
  }

  .guarantee-copy h2 {
    font-size: 34px;
    line-height: 1.04;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
  }

  .guarantee-text {
    font-size: 18px;
    line-height: 1.58;
  }

  .guarantee-points {
    padding: 28px 24px 30px;
    gap: 15px;
  }

  .guarantee-point {
    min-height: auto;
    padding: 21px;
    border-radius: 22px;
    text-align: left;
  }

  .guarantee-point span {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .guarantee-point p {
    font-size: 17px;
  }

  .guarantee-footnote {
    padding: 0 24px 42px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .guarantee-copy h2 {
    font-size: 30px;
  }

  .guarantee-text {
    font-size: 17px;
  }

  .guarantee-top {
    padding-left: 20px;
    padding-right: 20px;
  }

  .guarantee-points {
    padding-left: 20px;
    padding-right: 20px;
  }

  .guarantee-footnote {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*service area section*/

/* Process Section */

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(74, 144, 226, 0.16), transparent 32%),
    radial-gradient(circle at 88% 84%, rgba(255, 200, 87, 0.22), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #f4f4f9 100%);
  padding: 104px 0 96px;
  color: var(--neutral-dark);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.process-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.24), rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

.process-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.process-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  height: auto;
  margin: 0 0 18px;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.24);
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.12);
}

.process-heading h2 {
  max-width: 880px;
  margin: 0 auto 20px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2.2px;
}

.process-heading h2 span {
  color: var(--accent-orange);
}

.process-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(43, 43, 43, 0.7);
  font-size: 21px;
  line-height: 1.62;
  font-weight: 400;
}

.process-grid {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), rgba(255, 200, 87, 0.55), rgba(255, 107, 53, 0.35), transparent);
  pointer-events: none;
}

.process-card {
  position: relative;
  min-height: 330px;
  padding: 30px 26px 28px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(31, 59, 77, 0.08);
  backdrop-filter: blur(16px);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.process-card:nth-child(even) {
  margin-top: 46px;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 200, 87, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(74, 144, 226, 0.1), transparent 46%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-yellow), var(--accent-orange));
  transform: scaleX(0.28);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.32);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 86px rgba(31, 59, 77, 0.14);
}

.process-card:nth-child(even):hover {
  transform: translateY(38px);
}

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  box-shadow: 0 16px 36px rgba(31, 59, 77, 0.22);
}

.process-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-yellow);
  border: 5px solid var(--white);
}

.process-icon svg {
  width: 31px;
  height: 31px;
  display: block;
}

.process-card-content {
  position: relative;
  z-index: 2;
}

.process-card-content span {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--accent-orange);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card h3 {
  max-width: 270px;
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.6px;
}

.process-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(43, 43, 43, 0.66);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 400;
}

.process-note {
  width: fit-content;
  max-width: 100%;
  margin: 72px auto 0;
  padding: 17px 24px;
  border: 1px solid rgba(31, 59, 77, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(31, 59, 77, 0.08);
  color: rgba(43, 43, 43, 0.72);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
}

.process-note svg {
  width: 22px;
  height: 22px;
  color: var(--accent-orange);
  flex: 0 0 auto;
}

/* Tablet */

@media (max-width: 1100px) {
  .process-section {
    padding: 88px 0 78px;
  }

  .process-container {
    padding: 0 36px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 52px;
  }

  .process-grid::before {
    display: none;
  }

  .process-card,
  .process-card:nth-child(even) {
    margin-top: 0;
  }

  .process-card:nth-child(even):hover {
    transform: translateY(-8px);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .process-section {
    padding: 72px 0 64px;
  }

  .process-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .process-container {
    padding: 0 16px;
  }

  .process-heading {
    text-align: left;
  }

  .process-badge {
    font-size: 12px;
    padding: 9px 14px;
    margin-bottom: 16px;
  }

  .process-heading h2 {
    font-size: 39px;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
  }

  .process-heading p {
    font-size: 18px;
    line-height: 1.55;
  }

  .process-grid {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
    flex-direction: row;
    gap: 18px;
  }

  .process-card:hover {
    transform: translateY(-5px);
  }

  .process-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    margin-bottom: 0;
  }

  .process-icon::after {
    width: 23px;
    height: 23px;
    border-width: 4px;
  }

  .process-icon svg {
    width: 27px;
    height: 27px;
  }

  .process-card-content span {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .process-card h3 {
    font-size: 21px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .process-card p {
    font-size: 16.5px;
    line-height: 1.5;
  }

  .process-note {
    width: 100%;
    margin-top: 34px;
    padding: 18px 20px;
    border-radius: 22px;
    text-align: left;
    align-items: flex-start;
    font-size: 16px;
  }

  .process-note svg {
    margin-top: 1px;
  }
}

@media (max-width: 420px) {
  .process-heading h2 {
    font-size: 35px;
  }

  .process-heading p {
    font-size: 17px;
  }

  .process-card {
    padding: 22px;
    gap: 15px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .process-card h3 {
    font-size: 20px;
  }

  .process-card p {
    font-size: 16px;
  }
}
/*areas*/
/* Service Areas Section */

.service-areas-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(74, 144, 226, 0.15), transparent 32%),
    radial-gradient(circle at 92% 88%, rgba(255, 200, 87, 0.24), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #f4f4f9 100%);
  padding: 104px 0 96px;
  color: var(--neutral-dark);
}

.service-areas-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.service-areas-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.24), rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

.service-areas-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.service-areas-top {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 360px;
  gap: 48px;
  align-items: end;
}

.service-areas-heading {
  max-width: 900px;
}

.service-areas-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 17px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.24);
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-areas-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.12);
}

.service-areas-heading h2 {
  margin: 0 0 21px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2.2px;
}

.service-areas-heading h2 span {
  display: block;
  color: var(--accent-orange);
}

.service-areas-heading p {
  max-width: 860px;
  margin: 0;
  color: rgba(43, 43, 43, 0.7);
  font-size: 21px;
  line-height: 1.62;
  font-weight: 400;
}

.service-areas-heading p strong {
  color: var(--primary-dark);
  font-weight: 950;
}

.service-areas-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-areas-summary div {
  position: relative;
  overflow: hidden;
  padding: 26px 28px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(31, 59, 77, 0.96), rgba(31, 59, 77, 0.88)),
    var(--primary-dark);
  box-shadow: 0 24px 70px rgba(31, 59, 77, 0.14);
}

.service-areas-summary div::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.14);
}

.service-areas-summary strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 7px;
  color: var(--accent-yellow);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.service-areas-summary span {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 750;
}

.service-areas-search-wrap {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 30px 30px 0 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 65px rgba(31, 59, 77, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-areas-search {
  width: min(100%, 520px);
  height: 62px;
  padding: 0 20px;
  border: 1px solid rgba(31, 59, 77, 0.12);
  border-radius: 999px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 14px 34px rgba(31, 59, 77, 0.06);
}

.service-areas-search svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--accent-orange);
}

.service-areas-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 700;
}

.service-areas-search input::placeholder {
  color: rgba(43, 43, 43, 0.48);
}

.service-areas-count {
  margin: 0;
  color: rgba(43, 43, 43, 0.62);
  font-size: 16px;
  line-height: 1.45;
  text-align: right;
}

.service-areas-count strong {
  display: block;
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 950;
}

.service-areas-count span {
  color: rgba(43, 43, 43, 0.62);
}

.locations-scroll-box {
  position: relative;
  width: 100%;
  max-height: 620px;
  overflow: auto;
  padding: 0 24px 28px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(31, 59, 77, 0.09);
  backdrop-filter: blur(16px);
  scrollbar-color: rgba(31, 59, 77, 0.35) transparent;
  scrollbar-width: thin;
}

.locations-scroll-box::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.locations-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}

.locations-scroll-box::-webkit-scrollbar-thumb {
  background: rgba(31, 59, 77, 0.26);
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.county-block {
  padding-bottom: 28px;
}

.county-title {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: 0 -24px 22px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 59, 77, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.county-title span {
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.2px;
}

.county-title strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.24);
  color: var(--primary-dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.location-item {
  position: relative;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.location-item::after {
  content: "";
  position: absolute;
  right: -35px;
  top: -35px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.12);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.location-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.34);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(31, 59, 77, 0.08);
}

.location-item:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

.location-item svg {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent-orange);
}

.location-item.is-hidden {
  display: none;
}

.service-areas-empty {
  display: none;
  margin: 26px 0 0;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 200, 87, 0.16);
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
  text-align: center;
}

.service-areas-empty.is-visible {
  display: block;
}

.service-areas-footer {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(31, 59, 77, 0.96), rgba(31, 59, 77, 0.88)),
    var(--primary-dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 22px 60px rgba(31, 59, 77, 0.14);
}

.service-areas-footer a {
  color: var(--accent-yellow);
  font-weight: 950;
  text-decoration: none;
}

.service-areas-footer a:hover {
  color: var(--white);
}

/* Tablet */

@media (max-width: 1100px) {
  .service-areas-section {
    padding: 88px 0 78px;
  }

  .service-areas-container {
    padding: 0 36px;
  }

  .service-areas-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-areas-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */

@media (max-width: 767px) {
  .service-areas-section {
    padding: 72px 0 64px;
  }

  .service-areas-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .service-areas-container {
    padding: 0 16px;
  }

  .service-areas-badge {
    font-size: 12px;
    padding: 9px 14px;
    margin-bottom: 16px;
  }

  .service-areas-heading h2 {
    font-size: 39px;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
  }

  .service-areas-heading p {
    font-size: 18px;
    line-height: 1.55;
  }

  .service-areas-summary {
    grid-template-columns: 1fr;
  }

  .service-areas-summary div {
    padding: 23px 24px;
    border-radius: 24px;
  }

  .service-areas-summary strong {
    font-size: 40px;
  }

  .service-areas-search-wrap {
    margin-top: 34px;
    padding: 18px;
    border-radius: 24px 24px 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .service-areas-search {
    width: 100%;
    height: 58px;
    padding: 0 17px;
  }

  .service-areas-search input {
    font-size: 16px;
  }

  .service-areas-count {
    text-align: left;
    font-size: 15px;
  }

  .locations-scroll-box {
    max-height: 560px;
    padding: 0 18px 22px;
    border-radius: 0 0 24px 24px;
  }

  .county-title {
    margin: 0 -18px 18px;
    padding: 19px 18px;
  }

  .county-title span {
    font-size: 17px;
  }

  .county-title strong {
    font-size: 11px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-item {
    min-height: 52px;
    border-radius: 16px;
    font-size: 16.5px;
  }

  .service-areas-footer {
    padding: 22px;
    border-radius: 22px;
    font-size: 17px;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .service-areas-heading h2 {
    font-size: 35px;
  }

  .service-areas-heading p {
    font-size: 17px;
  }

  .service-areas-summary strong {
    font-size: 36px;
  }
}



/*reviews section*/

/* Client Reviews Section */

.client-reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(74, 144, 226, 0.17), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(255, 200, 87, 0.24), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #f4f4f9 100%);
  padding: 106px 0 96px;
  color: var(--neutral-dark);
}

.client-reviews-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.client-reviews-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.24), rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

.client-reviews-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.client-reviews-heading {
  max-width: 940px;
  margin: 0 auto 58px;
  text-align: center;
}

.client-google-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 60px;
  padding: 0 25px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(31, 59, 77, 0.08);
  backdrop-filter: blur(16px);
  margin-bottom: 24px;
}

.client-google-icon {
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  font-family: Arial, sans-serif;
  background: conic-gradient(
    from -45deg,
    #4285f4 0 25%,
    #34a853 0 50%,
    #fbbc05 0 75%,
    #ea4335 0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-google-small {
  font-size: 23px;
}

.client-google-pill span {
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1;
  font-weight: 850;
}

.client-google-pill strong {
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.client-google-pill .client-pill-stars {
  color: var(--accent-yellow);
  font-size: 18px;
  letter-spacing: -1px;
  -webkit-text-fill-color: var(--accent-yellow);
  background: none;
}

.client-reviews-heading h2 {
  max-width: 920px;
  margin: 0 auto 19px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2.2px;
}

.client-reviews-heading h2 span {
  display: block;
  color: var(--accent-orange);
}

.client-reviews-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(43, 43, 43, 0.7);
  font-size: 21px;
  line-height: 1.62;
  font-weight: 400;
}

.client-reviews-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
}

.client-feature-card {
  position: sticky;
  top: 24px;
  align-self: start;
  min-height: 620px;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(31, 59, 77, 0.98), rgba(31, 59, 77, 0.9)),
    var(--primary-dark);
  box-shadow: 0 30px 90px rgba(31, 59, 77, 0.2);
  overflow: hidden;
  isolation: isolate;
}

.client-feature-card::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.15);
  z-index: -1;
}

.client-feature-card::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 130px;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.client-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 44px;
}

.client-feature-label {
  display: inline-flex;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-feature-stars {
  color: var(--accent-yellow);
  font-size: 19px;
  line-height: 1;
  letter-spacing: -1px;
}

.client-feature-card h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -1.8px;
}

.client-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.client-feature-score {
  margin-top: 46px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.client-feature-score strong {
  color: var(--accent-yellow);
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
}

.client-feature-score span {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.client-feature-score small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.client-reviews-slider {
  overflow: hidden;
}

.client-reviews-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.client-review-card {
  position: relative;
  min-height: 376px;
  padding: 30px;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 65px rgba(31, 59, 77, 0.08);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.client-review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 200, 87, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(74, 144, 226, 0.1), transparent 44%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.client-review-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-yellow), var(--accent-orange));
  transform: scaleX(0.24);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.client-review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(74, 144, 226, 0.32);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 85px rgba(31, 59, 77, 0.14);
}

.client-review-card:hover::before {
  opacity: 1;
}

.client-review-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.client-quote {
  position: absolute;
  top: 13px;
  right: 27px;
  color: rgba(31, 59, 77, 0.07);
  font-size: 110px;
  line-height: 0.8;
  font-weight: 950;
  font-family: Georgia, serif;
}

.client-review-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 19px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(31, 59, 77, 0.18);
}

.client-avatar-blue {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.client-avatar-orange {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
}

.client-avatar-purple {
  background: linear-gradient(135deg, #5a4fd6, var(--primary-light));
}

.client-avatar-red {
  background: linear-gradient(135deg, var(--accent-orange), #d94b3d);
}

.client-avatar-green {
  background: linear-gradient(135deg, #1f9a60, #6fd18a);
}

.client-review-author h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 21px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.3px;
}

.client-review-author p {
  margin: 0;
  color: rgba(43, 43, 43, 0.58);
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.client-verified {
  width: 17px;
  height: 17px;
  color: #1f9a60;
  display: inline-flex;
}

.client-verified svg {
  width: 100%;
  height: 100%;
}

.client-verified-text {
  color: #168452;
  font-weight: 850;
}

.client-review-stars {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  color: var(--accent-yellow);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -1px;
}

.client-review-text {
  position: relative;
  z-index: 2;
  margin: 20px 0 0;
  color: rgba(43, 43, 43, 0.68);
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 400;
}

.client-review-line {
  position: relative;
  z-index: 2;
  height: 1px;
  background: rgba(31, 59, 77, 0.08);
  margin: 24px 0 18px;
}

.client-review-source {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(43, 43, 43, 0.6);
  font-size: 15px;
  line-height: 1;
  font-weight: 750;
}

.client-review-dots {
  display: none;
}

/* Tablet */

@media (max-width: 1100px) {
  .client-reviews-section {
    padding: 88px 0 78px;
  }

  .client-reviews-container {
    padding: 0 36px;
  }

  .client-reviews-layout {
    grid-template-columns: 1fr;
  }

  .client-feature-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .client-reviews-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .client-reviews-section {
    padding: 72px 0 64px;
  }

  .client-reviews-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .client-reviews-container {
    padding: 0;
  }

  .client-reviews-heading {
    text-align: left;
    padding: 0 16px;
    margin-bottom: 34px;
  }

  .client-google-pill {
    min-height: 54px;
    padding: 0 16px;
    gap: 10px;
    margin-bottom: 19px;
  }

  .client-google-icon {
    font-size: 24px;
  }

  .client-google-pill span {
    font-size: 15px;
  }

  .client-google-pill strong {
    font-size: 22px;
  }

  .client-google-pill .client-pill-stars {
    font-size: 15px;
  }

  .client-reviews-heading h2 {
    font-size: 39px;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
  }

  .client-reviews-heading p {
    font-size: 18px;
    line-height: 1.55;
  }

  .client-reviews-layout {
    display: block;
  }

  .client-feature-card {
    margin: 0 16px 22px;
    padding: 28px 24px 34px;
    border-radius: 28px;
  }

  .client-feature-top {
    margin-bottom: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .client-feature-card h3 {
    font-size: 34px;
    line-height: 1.04;
    letter-spacing: -1.2px;
  }

  .client-feature-card p {
    font-size: 17px;
    line-height: 1.58;
  }

  .client-feature-score {
    margin-top: 28px;
    padding: 20px;
    border-radius: 22px;
  }

  .client-feature-score strong {
    font-size: 42px;
  }

  .client-reviews-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 18px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .client-reviews-slider.is-dragging {
    cursor: grabbing;
  }

  .client-reviews-slider::-webkit-scrollbar {
    display: none;
  }

  .client-reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }

  .client-review-card {
    width: 430px;
    max-width: calc(100vw - 48px);
    min-height: 520px;
    padding: 25px;
    border-radius: 26px;
    scroll-snap-align: start;
  }

  .client-quote {
    top: 17px;
    right: 22px;
    font-size: 88px;
  }

  .client-avatar {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 17px;
    font-size: 19px;
  }

  .client-review-author {
    gap: 14px;
  }

  .client-review-author h3 {
    font-size: 20px;
  }

  .client-review-author p {
    font-size: 13px;
  }

  .client-review-stars {
    margin-top: 23px;
    font-size: 23px;
  }

  .client-review-text {
    margin-top: 20px;
    font-size: 16.5px;
    line-height: 1.58;
  }

  .client-review-source {
    font-size: 15px;
  }

  .client-review-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .client-review-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(31, 59, 77, 0.22);
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }

  .client-review-dots button.active {
    width: 30px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
  }
}

@media (max-width: 420px) {
  .client-reviews-heading h2 {
    font-size: 35px;
  }

  .client-reviews-heading p {
    font-size: 17px;
  }

  .client-feature-card h3 {
    font-size: 30px;
  }

  .client-feature-score {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .client-review-card {
    max-width: calc(100vw - 42px);
    min-height: 540px;
  }

  .client-google-pill {
    padding: 0 13px;
    gap: 8px;
  }

  .client-google-pill span {
    font-size: 14px;
  }

  .client-google-pill .client-pill-stars {
    display: none;
  }
}

/*FAQ SECTION*/

/* Roof FAQ Section */

.roof-faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(74, 144, 226, 0.16), transparent 32%),
    radial-gradient(circle at 92% 84%, rgba(255, 200, 87, 0.22), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, var(--neutral-light) 100%);
  padding: 106px 0 96px;
  color: var(--neutral-dark);
}

.roof-faq-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(31, 59, 77, 0.08);
  border-radius: 42px;
  pointer-events: none;
}

.roof-faq-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.24), rgba(255, 107, 53, 0.12));
  pointer-events: none;
}

.roof-faq-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.roof-faq-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
  gap: 44px;
  align-items: start;
}

.roof-faq-heading {
  position: sticky;
  top: 24px;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(31, 59, 77, 0.98), rgba(31, 59, 77, 0.9)),
    var(--primary-dark);
  box-shadow: 0 30px 90px rgba(31, 59, 77, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.roof-faq-heading::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.15);
  z-index: -1;
}

.roof-faq-heading::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 130px;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.roof-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roof-faq-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 6px rgba(255, 200, 87, 0.13);
}

.roof-faq-heading h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2.2px;
}

.roof-faq-heading h2 span {
  display: block;
  color: var(--accent-yellow);
}

.roof-faq-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.62;
  font-weight: 400;
}

.roof-faq-support-card {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.roof-faq-support-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(255, 107, 53, 0.22);
}

.roof-faq-support-icon svg {
  width: 26px;
  height: 26px;
}

.roof-faq-support-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
}

.roof-faq-support-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.45;
}

.roof-faq-support-card a {
  color: var(--accent-yellow);
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  text-decoration: none;
}

.roof-faq-support-card a:hover {
  color: var(--white);
}

.roof-faq-box {
  display: grid;
  gap: 16px;
}

.roof-faq-item {
  position: relative;
  border: 1px solid rgba(31, 59, 77, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 65px rgba(31, 59, 77, 0.08);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.roof-faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 200, 87, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(74, 144, 226, 0.1), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.roof-faq-item::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-yellow), var(--accent-orange));
  transform: scaleX(0.22);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.roof-faq-item:hover,
.roof-faq-item.active {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.32);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 85px rgba(31, 59, 77, 0.13);
}

.roof-faq-item:hover::before,
.roof-faq-item.active::before {
  opacity: 1;
}

.roof-faq-item:hover::after,
.roof-faq-item.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.roof-faq-question {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 92px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.roof-faq-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(31, 59, 77, 0.18);
}

.roof-faq-title {
  color: var(--primary-dark);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.roof-faq-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.22);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roof-faq-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.roof-faq-item.active .roof-faq-toggle {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
}

.roof-faq-item.active .roof-faq-toggle svg {
  transform: rotate(180deg);
}

.roof-faq-answer {
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.roof-faq-answer p {
  max-width: 720px;
  margin: 0;
  padding: 0 82px 28px 100px;
  color: rgba(43, 43, 43, 0.68);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
}

.roof-faq-item.active .roof-faq-answer {
  max-height: 180px;
}

/* Tablet */

@media (max-width: 1100px) {
  .roof-faq-section {
    padding: 88px 0 78px;
  }

  .roof-faq-container {
    padding: 0 36px;
  }

  .roof-faq-layout {
    grid-template-columns: 1fr;
  }

  .roof-faq-heading {
    position: relative;
    top: auto;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .roof-faq-section {
    padding: 72px 0 64px;
  }

  .roof-faq-section::before {
    inset: 14px;
    border-radius: 24px;
  }

  .roof-faq-container {
    padding: 0 16px;
  }

  .roof-faq-heading {
    padding: 28px 24px 34px;
    border-radius: 28px;
  }

  .roof-faq-badge {
    font-size: 12px;
    padding: 9px 14px;
    margin-bottom: 18px;
  }

  .roof-faq-heading h2 {
    font-size: 38px;
    line-height: 1.03;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
  }

  .roof-faq-heading p {
    font-size: 17px;
    line-height: 1.58;
  }

  .roof-faq-support-card {
    margin-top: 26px;
    padding: 20px;
    border-radius: 22px;
  }

  .roof-faq-support-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
  }

  .roof-faq-box {
    gap: 14px;
  }

  .roof-faq-item {
    border-radius: 22px;
  }

  .roof-faq-question {
    min-height: 82px;
    padding: 20px;
    grid-template-columns: 44px 1fr 40px;
    gap: 13px;
  }

  .roof-faq-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 13px;
  }

  .roof-faq-title {
    font-size: 18px;
    line-height: 1.28;
  }

  .roof-faq-toggle {
    width: 38px;
    height: 38px;
  }

  .roof-faq-answer p {
    padding: 0 22px 24px 77px;
    font-size: 16px;
    line-height: 1.58;
  }

  .roof-faq-item.active .roof-faq-answer {
    max-height: 220px;
  }
}

@media (max-width: 420px) {
  .roof-faq-heading h2 {
    font-size: 34px;
  }

  .roof-faq-support-card {
    flex-direction: column;
  }

  .roof-faq-question {
    grid-template-columns: 1fr 38px;
  }

  .roof-faq-number {
    display: none;
  }

  .roof-faq-answer p {
    padding: 0 20px 24px;
  }

  .roof-faq-title {
    font-size: 17px;
  }
}
.roof-footer {
  background: #202124;
  color: #ffffff;
}
/* Footer */

.roof-footer {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.roof-footer-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(74, 144, 226, 0.24), transparent 32%),
    radial-gradient(circle at 90% 82%, rgba(255, 200, 87, 0.22), transparent 34%),
    linear-gradient(135deg, #1F3B4D 0%, #172d3b 52%, #102330 100%);
  padding: 96px 0;
}

.roof-footer-cta::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 42px;
  pointer-events: none;
}

.roof-footer-cta::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.26), rgba(255, 107, 53, 0.1));
  pointer-events: none;
}

.roof-footer-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.roof-footer-content {
  max-width: 820px;
}

.roof-footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 200, 87, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-yellow);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.roof-footer-kicker span {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 7px rgba(255, 200, 87, 0.13);
}

.roof-footer-cta h2 {
  max-width: 820px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -2.8px;
}

.roof-footer-cta h2::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.roof-footer-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.56;
  font-weight: 400;
}

.roof-footer-buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.roof-footer-call,
.roof-footer-estimate {
  min-width: 246px;
  height: 66px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
  font-weight: 950;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.roof-footer-call {
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  border: 1px solid transparent;
  box-shadow: 0 18px 42px rgba(255, 107, 53, 0.26);
}

.roof-footer-call svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.roof-footer-call:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(255, 107, 53, 0.34);
}

.roof-footer-estimate {
  min-width: 260px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.roof-footer-estimate:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-4px);
}

.roof-footer-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.roof-footer-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.12);
}

.roof-footer-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 38px rgba(255, 107, 53, 0.24);
  margin: 0 0 28px;
}

.roof-footer-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.roof-footer-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 25px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.7px;
}

.roof-footer-card-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.roof-footer-card-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.roof-footer-card-list span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.18);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roof-footer-card-list svg {
  width: 16px;
  height: 16px;
}

.roof-footer-bottom {
  position: relative;
  background: #102330;
  padding: 38px 0 34px;
  text-align: left;
}

.roof-footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(420px, 1.2fr);
  gap: 42px;
  align-items: center;
}

.roof-footer-brand h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.roof-footer-brand p,
.roof-footer-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.roof-footer-info {
  text-align: right;
}

.roof-footer-info p + p {
  margin-top: 5px;
}

.roof-footer-info a {
  color: var(--accent-yellow);
  font-weight: 850;
  text-decoration: none;
}

.roof-footer-info a:hover {
  color: var(--white);
}

.roof-footer-info span {
  color: var(--accent-orange);
}

/* Mobile Sticky Bar */

.mobile-sticky {
  display: none;
}

/* Tablet */

@media (max-width: 1100px) {
  .roof-footer-cta-inner {
    padding: 0 36px;
    grid-template-columns: 1fr;
  }

  .roof-footer-card {
    max-width: 620px;
  }

  .roof-footer-bottom-inner {
    padding: 0 36px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .roof-footer-info {
    text-align: left;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .roof-footer-cta {
    padding: 72px 0 74px;
  }

  .roof-footer-cta::before {
    inset: 14px;
    border-radius: 24px;
  }

  .roof-footer-cta-inner {
    padding: 0 16px;
    gap: 34px;
  }

  .roof-footer-kicker {
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
  }

  .roof-footer-cta h2 {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1.6px;
    margin-bottom: 21px;
  }

  .roof-footer-cta h2::after {
    width: 78px;
    height: 5px;
    margin-top: 22px;
  }

  .roof-footer-cta p {
    font-size: 18px;
    line-height: 1.55;
  }

  .roof-footer-buttons {
    margin-top: 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .roof-footer-call,
  .roof-footer-estimate {
    width: 100%;
    min-width: 0;
    height: 62px;
    font-size: 18px;
  }

  .roof-footer-card {
    padding: 26px;
    border-radius: 26px;
  }

  .roof-footer-icon {
    width: 60px;
    height: 60px;
    border-radius: 19px;
    margin-bottom: 24px;
  }

  .roof-footer-card h3 {
    font-size: 24px;
  }

  .roof-footer-bottom {
    padding: 34px 0 96px;
  }

  .roof-footer-bottom-inner {
    padding: 0 16px;
  }

  .roof-footer-brand h3 {
    font-size: 22px;
  }

  .roof-footer-brand p,
  .roof-footer-info p {
    font-size: 14px;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(31, 59, 77, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(31, 59, 77, 0.22);
    backdrop-filter: blur(18px);
  }

  .sticky-call,
  .sticky-estimate {
    height: 52px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 950;
  }

  .sticky-call {
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: var(--primary-dark);
  }

  .sticky-call svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
  }

  .sticky-estimate {
    background: var(--primary-dark);
    color: var(--white);
  }
}

@media (max-width: 420px) {
  .roof-footer-cta h2 {
    font-size: 35px;
  }

  .roof-footer-cta p {
    font-size: 17px;
  }

  .roof-footer-card {
    padding: 23px;
  }

  .roof-footer-call,
  .roof-footer-estimate {
    font-size: 17px;
  }

  .sticky-call,
  .sticky-estimate {
    font-size: 13px;
  }
}