/* Why Section */

.section.why {
  padding: 20px 0;
}

.why-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--gold);
}

.why-content p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   HOME - FEATURED SERVICES
========================= */

.featured-services {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  
}

.featured-services-inner {
  position: relative;
  z-index: 1;
}

.featured-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.featured-copy {
  color: var(--text);
  position: relative;
  z-index: 2;
}

.featured-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  color: var(--gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
}

.featured-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--red);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.52);
}

.featured-copy p {
  max-width: 680px;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(20, 20, 20, 0.88);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.18);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.78);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.18);
}

.featured-copy p {
  max-width: 680px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.84);
}


.service-feature-card {
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(244, 196, 48, 0.22);
  color: #fff7dc;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);

  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

}

.card-solid h4 {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem); /* 🔥 bigger */
  font-weight: 700;
  margin-bottom: 10px;
}

.card-solid-red h4 {
  color: var(--gold);
}

.card-solid-gold h4 {
  color: var(--red);
}

.card-solid-dark h4 {
  color: var(--gold);
}


.service-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.76);
}

.featured-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}



.insurance-section {
  text-align: center;
  padding: 20px 0;
}

.insurance-inner {
  max-width: 800px;
  margin: 0 auto;
}

.insurance-heading {
  margin: 0 0 20px;
  font-size: clamp(2.0rem, 4vw, 2.2rem);
  color: var(--red);

  /* black shadow for depth */
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.insurance-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #111; /* darker for gold background readability */
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-areas {
  padding: 10px 0; /* 👈 was ~80+ */
}

.service-areas-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0; /* 👈 remove extra padding */
}

.service-areas h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--red);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
}

.service-areas-text {
  margin: 0 auto 32px;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 16px 18px;
  max-width: 760px;
  margin: 0 auto;
}

.service-area-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(20, 20, 24, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.service-area-item:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 196, 48, 0.35);
}

.service-area-item span {
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
}

.service-areas-more {
  display: none;
  margin-top: 18px;
}

.service-areas-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.btn-dark {
  background: rgba(20, 20, 24, 0.75);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-dark:hover {
  background: rgba(20, 20, 24, 0.95);
  border-color: rgba(244, 196, 48, 0.3);
  transform: translateY(-1px);
}


/* =========================
   CTA STRIP
========================= */

.cta-strip {
  padding: 50px;
  text-align: center;

  
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red);
  margin-bottom: 10px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 26px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #f4c430, #ffd86b);
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  box-shadow: 0 8px 18px rgba(244, 196, 48, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(244, 196, 48, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px; /* 🔥 bigger */
  border-radius: 999px; /* 🔥 fully rounded pill */

  font-size: 0.95rem;
  font-weight: 600;

  cursor: pointer;
  text-decoration: none;

  transition: all 0.25s ease;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-call {
  background: linear-gradient(135deg, #d94b2b, #ff7a4d);
  color: #fff;
  font-weight: 700;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217, 75, 43, 0.3);
}


@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 75, 43, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(217, 75, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 75, 43, 0);
  }
}

.btn-call {
  animation: callPulse 2.5s infinite;
}


/* =========================
   TRUST STRIP
========================= */

.trust-strip {
  padding: 30px 0 30px;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trust-strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.trust-card {
  padding: 20px 30px;
  background: rgba(20, 20, 20, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 8px 18px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 20px;

  min-width: 260px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.28),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.trust-list-wrap {
  display: flex;
  justify-content: center;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.trust-list li {
  position: relative;
  padding-left: 48px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.trust-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4c430, #ffd86b);
  color: #1a1a1a;
  font-size: 1.1rem;
  box-shadow:0 6px 16px rgba(244, 196, 48, 0.35);
}

.trust-copy {
  color: #fff7f1;
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.82);
}

.trust-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--gold);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}

.trust-copy p {
  margin: 0;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 247, 241, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .section.why {
    padding: 40px 0;
  }

  .featured-services {
    padding: 72px 0;
  }

  .featured-top {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
  }

  .featured-copy {
    text-align: center;
  }

  .featured-copy p {
    max-width: none;
  }

  .service-feature-card {
    min-height: auto;
  }

  .featured-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-strip {
    padding: 28px 0;
  }

  .trust-strip {
    padding: 48px 0;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .trust-copy {
    text-align: center;
  }

  .trust-copy p {
    max-width: none;
  }

  .trust-list-wrap {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section.why {
    padding: 32px 0;
  }

  .why-content h2 {
    font-size: 28px;
  }

  .featured-services {
    padding: 56px 0;
  }

  .featured-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .featured-copy h3 {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
    margin-bottom: 14px;
  }

  .featured-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .glass-card {
    border-radius: 18px;
  }

  .service-feature-card,
  .service-mini-card,
  .trust-card {
    padding: 22px 20px;
  }

  .service-feature-card h4 {
    font-size: 1.6rem;
  }

  .service-mini-card h4 {
    font-size: 1.15rem;
  }

  .cta-strip {
    padding: 24px 0;
  }

  .cta-sub {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    padding: 40px 0;
  }

  .trust-card {
    min-width: 0;
  }

  .trust-list li {
    padding-left: 42px;
    font-size: 1.05rem;
  }

  .trust-list li::before {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .trust-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .trust-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .service-areas-inner {
    padding: 56px 0;
  }

  .service-areas-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    max-width: 560px;
  }
}

@media (max-width: 520px) {
  .service-areas-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .service-areas-actions {
    flex-direction: column;
  }

  .service-areas-actions .btn-primary,
  .service-areas-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}
