/* =========================================
   SERVICE DETAIL PAGE — COMPLETE STYLES
   Matching: broadwaycarpetbrooklyn.com live design
   Dynamic blade class names
   ========================================= */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&family=Open+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap");

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --blue: #40b3f1;
  --blue-dark: #2b86b7;
  --green: #81ba00;
  --green-dark: #6a9900;
  --text-dark: #000000;
  --text-body: #3d3d3d;
  --bg-light: #eaf8ff;
  --bg-grey: #f7f9fc;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.11);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

/* =========================================
   CONTAINER
   ========================================= */
.container-1200 {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =========================================
   1. HERO — .sd-hero
   ========================================= */
.sd-hero {
  position: relative;
  min-height: 494px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 130px;
  z-index: 1;
}

.sd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.38) 55%,
    rgba(0, 0, 0, 0.58) 100%
  );
  z-index: 0;
}

.sd-hero > * {
  position: relative;
  z-index: 1;
}

.sd-hero-title {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 55px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.27;
  margin: 0 0 20px;
  max-width: 720px;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}

.sd-hero-title span {
  color: var(--blue);
}

.sd-hero-tagline {
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 30px;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.95),
    0 0 20px rgba(0, 0, 0, 0.8);
}

.sd-hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-white:hover {
  background: #ffffff;
  color: #333;
}

.btn-primary-green {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid var(--blue);
  border-radius: 25px;
  background: var(--blue);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-green:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* =========================================
   2. PROMO BANNER — .sd-promo-banner
   ========================================= */
.sd-promo-banner {
  background-color: var(--blue);
  padding: 24px 20px;
  color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 20;
}

.promo-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-main-text {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: #ffffff;
}

.promo-sub-text {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: #ffffff;
}

/* =========================================
   3. OVERLAP WRAPPER — .overlap-section
   ========================================= */
.overlap-section {
  background-color: var(--white);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 60px 0 30px;
}

/* =========================================
   4. SECTION 1 — WHY HOMES NEED [SERVICE]
      .sd-about-section  |  text left, image right
   ========================================= */
.sd-about-section {
  padding: 10px 0 40px;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left: text box with diagonal gradient */
.about-text-col {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}

.about-text-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(64, 179, 241, 0.22),
    rgba(64, 179, 241, 0.1)
  );
  clip-path: polygon(0 0, 28% 0, 90% 100%, 0 100%);
  border-radius: var(--radius);
  pointer-events: none;
}

.about-text-col > * {
  position: relative;
  z-index: 1;
}

.about-text-col h1,
.about-text-col h2,
.about-text-col h3 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.about-text-col h2 span,
.about-text-col h3 span {
  color: var(--blue);
}

.about-text-col p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  text-align: justify;
  margin: 0 0 14px;
}

/* Right: image */
.about-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-frame-wrapper {
  width: 100%;
}

.framed-image {
  display: block;
  width: 100%;
  /* height: 460px; */
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.sd-image-caption {
  display: block;
  text-align: center;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 12px;
}

/* =========================================
   5. SECTION 2 — TECHNIQUES
      .sd-techniques-section
   ========================================= */
.sd-techniques-section {
  padding: 10px 0 40px;
  background: var(--white);
}

.sd-techniques-inner h2 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  margin: 0 0 24px;
}

.sd-techniques-inner h2 span {
  color: var(--blue);
}

.sd-techniques-inner h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid #f0f0f0;
}

.sd-techniques-inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 14px;
}

/* =========================================
   6. SECTION 3 — WHAT MAKES US TRUSTED
      .sd-trusted-section  |  light-blue bg
   ========================================= */
.sd-trusted-section {
  background: var(--bg-light);
  padding: 32px 20px;
  text-align: center;
  position: relative;
}

.sd-trusted-section::before,
.sd-trusted-section::after {
  content: "";
  position: absolute;
  background: var(--blue-dark);
  border-radius: 50%;
  opacity: 0.6;
}
.sd-trusted-section::before {
  width: 14px;
  height: 14px;
  top: 18px;
  left: 18px;
}
.sd-trusted-section::after {
  width: 22px;
  height: 22px;
  top: 28px;
  right: 28px;
}

.sd-trusted-section h2 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 20px;
}

.sd-trusted-section h2 span {
  color: var(--blue);
}

.sd-trusted-section ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 30px;
  margin: 0 auto;
  padding: 0;
  max-width: 860px;
  text-align: left;
}

.sd-trusted-section ul li {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.sd-trusted-section ul li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  background: var(--white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  flex-shrink: 0;
}

/* Fallback if editor outputs plain paragraphs */
.sd-trusted-section p {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 2.2;
  margin: 0;
}

/* =========================================
   7. SECTION 4 — APPROACH
      .sd-approach-section  |  image left, text right
   ========================================= */
.sd-approach-section {
  padding: 40px 0;
  background: var(--white);
}

.sd-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.sd-approach-image img {
  display: block;
  width: 100%;
  /* height: 460px; */
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.sd-approach-caption {
  display: block;
  font-style: italic;
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  text-align: center;
}

.sd-approach-text {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}

.sd-approach-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(64, 179, 241, 0.22),
    rgba(64, 179, 241, 0.1)
  );
  clip-path: polygon(0 0, 28% 0, 90% 100%, 0 100%);
  border-radius: var(--radius);
  pointer-events: none;
}

.sd-approach-text > * {
  position: relative;
  z-index: 1;
}

.sd-approach-text h2,
.sd-approach-text h3 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.sd-approach-text h2 span,
.sd-approach-text h3 span {
  color: var(--blue);
}

.sd-approach-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  text-align: justify;
  margin: 0 0 14px;
}

/* =========================================
   8. SECTION 5 — LOOKING FOR A SERVICE?
      .sd-looking-section  |  light-blue, centered
   ========================================= */
.sd-looking-section {
  background: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
}

.sd-looking-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sd-looking-inner h2 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 20px;
}

.sd-looking-inner h2 span {
  color: var(--blue);
}

.sd-looking-inner p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dark);
  margin: 0 0 14px;
}

.sd-looking-inner a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: none;
}
.sd-looking-inner a:hover {
  text-decoration: underline;
}

/* =========================================
   9. FAQ — .sd-faq-section
   ========================================= */
.sd-faq-section {
  padding: 50px 0;
  background: var(--bg-grey);
}

.sd-center-heading {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  margin: 0 0 32px;
}

.sd-center-heading span {
  color: var(--blue);
}

.sd-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.sd-faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #daeeff;
}

.sd-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.sd-faq-btn:hover {
  background: var(--bg-light);
}

.sd-faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
}

.sd-faq-content {
  display: none;
  padding: 0 22px 18px;
  font-size: 15.5px;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
}

.sd-faq-content p {
  margin: 14px 0 0;
}

.sd-faq-item.active .sd-faq-content {
  display: block;
}

/* =========================================
   10. BOTTOM CTA CARD — .sd-cta-card
   ========================================= */
.sd-cta-card {
  background: #1f425d;
  /* border-radius: 16px; */
  padding: 65px 85px;
  /* margin: 40px 115px 60px; */
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.sd-cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* Centers the whole row */
  flex-wrap: wrap; /* Allows wrapping on mobile */
  gap: 40px; /* Space between items */
}

/* Individual List Items */
.sd-cta-card ul li {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #fff;
}

/* The Checkmark Icon */
.sd-cta-card ul li i {
  background-color: #ffffff;
  color: #1f425d;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Auto-inject checkmark icon via ::before when no <i> is present */
.sd-cta-card ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  background-color: #ffffff;
  color: #1f425d;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 13px;
  flex-shrink: 0;
}

/* Hide ::before if an <i> icon is already present */
.sd-cta-card ul li:has(i)::before {
  display: none;
}

/* .sd-cta-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 120px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 22px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
} */

.sd-cta-text h2 {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.25;
}

.sd-cta-text h2 span {
  color: rgba(255, 255, 255, 0.8);
}

.sd-cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 500px;
  line-height: 1.7;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 25px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta-white:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* =========================================
   11. RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
  .about-content-grid,
  .sd-approach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sd-approach-image {
    order: -1;
  }

  .sd-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }

  .sd-cta-text p {
    max-width: 100%;
  }

  .sd-trusted-section ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sd-hero {
    min-height: 400px;
    padding: 60px 20px 110px;
  }

  .overlap-section {
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    margin-top: -40px;
    padding-top: 40px;
  }

  .promo-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .framed-image,
  .sd-approach-image img {
    height: 300px;
  }

  .sd-trusted-section ul {
    grid-template-columns: 1fr;
    padding-left: 10px;
  }

  .sd-cta-card {
    margin: 30px 10px 40px;
  }
}

@media (max-width: 480px) {
  .sd-hero {
    min-height: 350px;
  }

  .about-text-col,
  .sd-approach-text {
    padding: 20px 16px;
  }

  .framed-image,
  .sd-approach-image img {
    height: 240px;
  }
}

/* =========================================
   NEW LAYOUT — TWO-COLUMN MAIN + SIDEBAR
   ========================================= */

/* Content section wrapper */
.sd-content-section {
  padding: 40px 0;
}

/* Two-column grid: main (2fr) + sidebar (1fr) */
.sd-main-sidebar-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: flex-start;
}

/* Main column */
.sd-main-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Service featured image */
.sd-service-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.10); */
}

.sd-service-image img {
  display: block;
  width: 100%;
  /* height: 400px !important; */
  height: auto;
  object-fit: cover;
}

/* Rich content text */
.sd-content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.sd-content-text h1,
.sd-content-text h2,
.sd-content-text h3,
.sd-content-text h4 {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.3;
}

.sd-content-text h2 {
  font-size: clamp(22px, 2.5vw, 32px);
}
.sd-content-text h3 {
  font-size: 20px;
}
.sd-content-text h4 {
  font-size: 17px;
}

.sd-content-text p {
  margin: 0 0 14px;
  color: #444;
}

.sd-content-text ul,
.sd-content-text ol {
  margin: 0 0 14px;
  padding-left: 22px;
  color: #444;
}

.sd-content-text li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.sd-content-text a {
  color: #1f425d;
  font-weight: 600;
  text-decoration: none;
}
.sd-content-text a:hover {
  text-decoration: underline;
}

/* ─── Sidebar ─── */
.sd-sidebar-col {
  position: sticky;
  top: 100px;
}

.sd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Services list */
.sd-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #e8f5ff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e6ed;
}

.sd-service-list__all {
  background: #1f425d;
}

.sd-service-list__all a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sd-service-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e0e6ed;
  transition:
    background 0.2s,
    color 0.2s;
}

.sd-service-list li:last-child a {
  border-bottom: none;
}

.sd-service-list li a .fa {
  font-size: 11px;
  color: #1f425d;
  flex-shrink: 0;
}

.sd-service-list li a:hover,
.sd-service-list li a.active {
  background: #1f425d;
  color: #fff;
}

.sd-service-list li a:hover .fa,
.sd-service-list li a.active .fa {
  color: #2ab0dd;
}

/* Sidebar contact widget */
.sd-sidebar-widget {
  background: #1f425d;
  color: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-sidebar-widget h4 {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.sd-sidebar-widget p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.sd-sidebar-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2ab0dd;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.25s;
  text-align: center;
}

.sd-sidebar-phone-btn:hover {
  background: #fff;
  color: #1f425d;
}

.sd-sidebar-contact-btn {
  display: block;
  text-align: center;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.25s;
}

.sd-sidebar-contact-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ─── Process text section ─── */
.sd-process-text-section {
  padding: 0 0 40px;
}

/* ─── Generic padded section ─── */
.sd-section-padded {
  padding: 40px 0;
}

.sd-bg-light {
  background: #f5f9fc;
}

/* =========================================
   WHY CHOOSE US — .sd-why-section
   ========================================= */
.sd-why-section {
  padding: 10px 0;
  background: #e8f5ff;
}

.sd-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.sd-why-steps {
  display: flex;
  flex-direction: column;
}

.sd-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: center;
}

.sd-why-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-why-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f425d;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Trebuchet MS", sans-serif;
}

.sd-why-card-body {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}
.why-choose-heading span {
  color: #1f425d;
}

.sd-why-card-body strong {
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.sd-why-card-body p {
  font-size: 16px;
  line-height: 27px;
  color: #000000;
  text-align: left;
}

.sd-why-card-body h3,
.sd-why-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin: 0 0 6px;
}

.sd-why-card-body p {
  margin: -1px;
}

.sd-why-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.sd-why-image img {
  display: block;
  width: 100%;
  /* height: 500px !important; */
  height: auto;
  object-fit: cover;
}

/* =========================================
   NEW FAQ — .sd-faq-q / .sd-faq-a
   (class names different from old .sd-faq-btn/.sd-faq-content)
   ========================================= */
.sd-faq-heading {
  font-family: "Trebuchet MS", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin: 0 0 32px;
}

.sd-faq-heading span {
  color: #1f425d;
}

.sd-faq-q {
  width: 100%;
  padding: 18px 22px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0;
  user-select: none;
  transition: color 0.2s;
}

.sd-faq-q:hover {
  color: #1f425d;
}

.sd-faq-toggle {
  font-size: 24px;
  font-weight: 400;
  color: #1f425d;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}

.sd-faq-item.active .sd-faq-toggle {
  transform: rotate(45deg);
}

.sd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid transparent;
}

.sd-faq-item.active .sd-faq-a {
  border-top-color: #f0f0f0;
}

.sd-faq-a p {
  margin: 14px 0;
}

/* =========================================
   CONTACT SECTION — .sd-contact-section
   ========================================= */
.sd-contact-section {
  padding: 60px 0;
  background: #e8f5ff;
}

.sd-contact-heading {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.sd-contact-heading span {
  color: #1f425d;
}

.sd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Info cards */
.sd-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sd-ci-card {
  background: #1f425d;
  color: #fff;
  padding: 18px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.sd-ci-card a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.sd-ci-card a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.sd-ci-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sd-ci-hours-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
}

.sd-ci-hours-val {
  font-size: 15px;
  font-weight: 600;
}

/* Contact form */
.sd-contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sd-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sd-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.sd-form-group input,
.sd-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Trebuchet MS", sans-serif;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.sd-form-group input:focus,
.sd-form-group textarea:focus {
  outline: none;
  border-color: #1f425d;
}

.sd-form-group textarea {
  resize: vertical;
}

.sd-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.sd-btn-send {
  background: #1f425d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.25s;
  font-family: "Trebuchet MS", sans-serif;
}

.sd-btn-send:hover {
  background: #2ab0dd;
}

.sd-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px solid #1f425d;
  color: #1f425d;
  font-size: 16px;
  font-weight: 900;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s;
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sd-btn-call:hover {
  background: #1f425d;
  color: #fff;
}

/* Alerts */
.sd-alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
}

.sd-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.sd-alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.sd-alert ul {
  margin: 6px 0 0 16px;
  padding: 0;
}

/* =========================================
   RESPONSIVE — NEW LAYOUT CLASSES
   ========================================= */
@media (max-width: 992px) {
  .sd-main-sidebar-grid {
    grid-template-columns: 1fr;
  }

  .sd-sidebar-col {
    position: static;
  }

  .sd-why-inner {
    grid-template-columns: 1fr;
  }

  .sd-why-image {
    order: -1;
  }

  .sd-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sd-why-grid {
    grid-template-columns: 1fr;
  }

  .sd-form-row {
    grid-template-columns: 1fr;
  }

  .sd-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sd-btn-send,
  .sd-btn-call {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sd-why-grid {
    grid-template-columns: 1fr;
  }

  .sd-cta-card {
    margin: 30px 0 40px;
  }
}
