/* ============================================================
   Landing Page Template — Custom Styles
   Bootstrap 5 base, Font Awesome 6, Swiper 10
   ============================================================ */

/* ---- Inter Variable Font (locally hosted) ---- */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---- Poppins (locally hosted) ---- */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Root Variables ---- */
:root {
  --lp-primary:   #E8401C;
  --lp-primary-h: #c73515;
  --lp-dark:      #1E1E1E;
  --lp-dark-2:    #2a2a2a;
  --lp-dark-card: #333333;
  --lp-dark-card2:#3d3d3d;
  --lp-light-background:#F5F5F5;
  --lp-sub-container-bg:      #F5F5F5;
  --lp-sub-container-bg-dark: #333333;
  --lp-link-color:            #E8401C;
  --lp-link-hover-color:      #c73515;
  --lp-link-color-dark:       #E8401C;
  --lp-link-hover-color-dark: #ffffff;
  --lp-border:    #e0e0e0;
  --lp-text:      #1a1a1a;
  --lp-text-muted:#555555;
  --lp-white:     #ffffff;
  --lp-radius:    10px;
  --lp-radius-lg: 16px;
  --lp-font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --lp-btn-radius:  5px;

  /* Primary — dark variant (default, used on light sections) */
  --lp-btn-primary-bg:           #E8401C;
  --lp-btn-primary-color:        #ffffff;
  --lp-btn-primary-hover-bg:     #c73515;
  --lp-btn-primary-hover-color:  #ffffff;
  /* Primary — light variant (used on .lp-elements-light sections) */
  --lp-btn-primary-light-bg:           #ffffff;
  --lp-btn-primary-light-color:        #1E1E1E;
  --lp-btn-primary-light-hover-bg:     #f0f0f0;
  --lp-btn-primary-light-hover-color:  #1E1E1E;

  /* Secondary — dark variant */
  --lp-btn-secondary-bg:           #1E1E1E;
  --lp-btn-secondary-color:        #ffffff;
  --lp-btn-secondary-hover-bg:     #333333;
  --lp-btn-secondary-hover-color:  #ffffff;
  /* Secondary — light variant */
  --lp-btn-secondary-light-bg:           #ffffff;
  --lp-btn-secondary-light-color:        #1E1E1E;
  --lp-btn-secondary-light-hover-bg:     #e8e8e8;
  --lp-btn-secondary-light-hover-color:  #1E1E1E;

  /* Text — dark variant (transparent backgrounds by default) */
  --lp-btn-text-bg:           transparent;
  --lp-btn-text-color:        #E8401C;
  --lp-btn-text-hover-bg:     transparent;
  --lp-btn-text-hover-color:  #c73515;
  /* Text — light variant */
  --lp-btn-text-light-bg:           transparent;
  --lp-btn-text-light-color:        #ffffff;
  --lp-btn-text-light-hover-bg:     transparent;
  --lp-btn-text-light-hover-color:  #cccccc;
  --lp-text-light:               #cccccc;
  --lp-shadow:    0 4px 20px rgba(0,0,0,.08);
}

/* ---- Base Reset ---- */
.landing-page-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--lp-text);
  line-height: 1.65;
  margin: 0;
  padding: 0;
  background: #fff;
}
.landing-page-body *,
.landing-page-body *::before,
.landing-page-body *::after { box-sizing: border-box; }

.landing-page-body h1,
.landing-page-body h2,
.landing-page-body h3,
.landing-page-body h4,
.landing-page-body h5,
.landing-page-body h6 {
  font-family: var(--lp-font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.landing-page-body p,
.landing-page-body li { font-size: .95rem; }
.landing-page-body p { margin-bottom: 1rem; }
.landing-page-body a:not(.btn-lp) { color: var(--lp-link-color); transition: color .15s; }
.landing-page-body a:not(.btn-lp):hover { color: var(--lp-link-hover-color); }
.landing-page-body img { max-width: 100%; height: auto; }

/* ---- Section Spacing ---- */
.lp-section     { padding: 80px 0; }
.lp-section-sm  { padding: 56px 0; }
.lp-section-xs  { padding: 40px 0; }

/* ---- Global Section Headings ---- */
.lp-section h2,
.lp-section-sm h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.lp-accreditations h2 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
}

/* ---- Accent Line ---- */
.lp-accent-line {
  width: 56px;
  height: 3px;
  background: var(--lp-primary);
  margin-bottom: 20px;
}

/* ---- Buttons ---- */
.btn-lp,
.btn-lp-primary,
.btn-lp-secondary,
.btn-lp-text {
  display: inline-block;
  padding: 11px 26px;
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--lp-btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
}

/* Primary — dark variant (default on regular sections) */
.btn-lp-primary {
  background: var(--lp-btn-primary-bg);
  color: var(--lp-btn-primary-color);
  border-color: var(--lp-btn-primary-bg);
}
.btn-lp-primary:visited { color: var(--lp-btn-primary-color); }
.btn-lp-primary:hover {
  background: var(--lp-btn-primary-hover-bg);
  border-color: var(--lp-btn-primary-hover-bg);
  color: var(--lp-btn-primary-hover-color);
}
.btn-lp-primary:hover:visited { color: var(--lp-btn-primary-hover-color); }
/* Primary — light variant (on dark sections) */
.lp-elements-light .btn-lp-primary {
  background: var(--lp-btn-primary-light-bg);
  color: var(--lp-btn-primary-light-color);
  border-color: var(--lp-btn-primary-light-bg);
}
.lp-elements-light .btn-lp-primary:visited { color: var(--lp-btn-primary-light-color); }
.lp-elements-light .btn-lp-primary:hover {
  background: var(--lp-btn-primary-light-hover-bg);
  border-color: var(--lp-btn-primary-light-hover-bg);
  color: var(--lp-btn-primary-light-hover-color);
}
.lp-elements-light .btn-lp-primary:hover:visited { color: var(--lp-btn-primary-light-hover-color); }

/* Secondary — dark variant */
.btn-lp-secondary {
  background: var(--lp-btn-secondary-bg);
  color: var(--lp-btn-secondary-color);
  border-color: var(--lp-btn-secondary-bg);
}
.btn-lp-secondary:visited { color: var(--lp-btn-secondary-color); }
.btn-lp-secondary:hover {
  background: var(--lp-btn-secondary-hover-bg);
  border-color: var(--lp-btn-secondary-hover-bg);
  color: var(--lp-btn-secondary-hover-color);
}
.btn-lp-secondary:hover:visited { color: var(--lp-btn-secondary-hover-color); }
/* Secondary — light variant */
.lp-elements-light .btn-lp-secondary {
  background: var(--lp-btn-secondary-light-bg);
  color: var(--lp-btn-secondary-light-color);
  border-color: var(--lp-btn-secondary-light-bg);
}
.lp-elements-light .btn-lp-secondary:visited { color: var(--lp-btn-secondary-light-color); }
.lp-elements-light .btn-lp-secondary:hover {
  background: var(--lp-btn-secondary-light-hover-bg);
  border-color: var(--lp-btn-secondary-light-hover-bg);
  color: var(--lp-btn-secondary-light-hover-color);
}
.lp-elements-light .btn-lp-secondary:hover:visited { color: var(--lp-btn-secondary-light-hover-color); }

/* Text — plain inline link, no border, transparent bg by default */
.btn-lp-text {
  background: var(--lp-btn-text-bg);
  color: var(--lp-btn-text-color);
  border-color: transparent;
  padding: 11px 0;
}
.btn-lp-text:visited { color: var(--lp-btn-text-color); }
.btn-lp-text:hover {
  background: var(--lp-btn-text-hover-bg);
  color: var(--lp-btn-text-hover-color);
}
.btn-lp-text:hover:visited { color: var(--lp-btn-text-hover-color); }
/* Text — light variant */
.lp-elements-light .btn-lp-text {
  background: var(--lp-btn-text-light-bg);
  color: var(--lp-btn-text-light-color);
}
.lp-elements-light .btn-lp-text:visited { color: var(--lp-btn-text-light-color); }
.lp-elements-light .btn-lp-text:hover {
  background: var(--lp-btn-text-light-hover-bg);
  color: var(--lp-btn-text-light-hover-color);
}
.lp-elements-light .btn-lp-text:hover:visited { color: var(--lp-btn-text-light-hover-color); }

/* ---- Check List ---- */
.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.lp-checklist li {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-checklist li .lp-check {
  color: var(--lp-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-checklist li.lp-item-accent { color: var(--lp-primary); font-weight: 600; }
.lp-check-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }

/* ---- Light Elements (used on custom dark-background sections) ---- */
.lp-elements-light h1,
.lp-elements-light h2,
.lp-elements-light h3,
.lp-elements-light h4,
.lp-elements-light h5,
.lp-elements-light h6 { color: #fff; }
.lp-elements-light p,
.lp-elements-light li { color: var(--lp-text-light); }

/* ---- Background Image Section ---- */
.lp-bg-section {
  background-size: cover;
  background-position: center;
  position: relative;
}
/* Overlay only renders darkening in Dark Mode; in Light Mode it stays invisible. */
.lp-bg-section > .lp-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.lp-bg-section.lp-elements-light > .lp-bg-overlay {
  background: rgba(0,0,0,.68);
}
.lp-bg-section > .container,
.lp-bg-section > .container-fluid {
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAV
   ============================================================ */
.lp-nav {
  background: #fff;
  padding: 14px 0;
  border-top: 4px solid var(--lp-dark);
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.lp-nav .lp-logo img { max-height: 48px; width: auto; }
.lp-nav .lp-logo .custom-logo-link { display: inline-block; line-height: 0; }
.lp-nav .lp-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lp-dark);
  text-decoration: none;
}
.lp-nav .lp-nav-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-nav .btn-lp-primary,
.lp-nav .btn-lp-secondary,
.lp-nav .btn-lp-text { padding: 9px 20px; font-size: .9rem; }

/* ============================================================
   HERO V1
   ============================================================ */
.lp-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 767.98px) {
  .lp-hero { background-image: var(--bg-mobile, var(--bg-desktop)); }
}
.lp-hero > .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.lp-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .5rem; }
.lp-hero .lp-subheading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.lp-hero p { font-size: .97rem; }
.lp-hero .lp-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.5rem; }

.lp-form-card {
  background: #fff;
  border-radius: var(--lp-radius-lg);
  padding: 28px 30px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.lp-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--lp-dark);
}
/* Gravity Forms reset inside card */
.lp-form-card .gform_wrapper .gform_body { padding: 0; }
.lp-form-card .gform_wrapper .gfield { min-width: 0; }
.lp-form-card .gform_wrapper input[type="text"],
.lp-form-card .gform_wrapper input[type="email"],
.lp-form-card .gform_wrapper input[type="tel"],
.lp-form-card .gform_wrapper textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 14px;
  width: 100%;
  box-sizing: border-box;
  font-size: .92rem;
}
.lp-form-card .gform_wrapper select {
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  font-size: .92rem;
}
.lp-form-card .gform_wrapper .gform_footer input[type="submit"],
.lp-form-card .gform_wrapper .gform_footer input.gform_button,
.lp-form-card .gform_wrapper .gform_footer .gform_button,
.lp-form-card .gform_wrapper .gform_footer button {
  background: var(--lp-btn-primary-bg) !important;
  background-color: var(--lp-btn-primary-bg) !important;
  border: 2px solid var(--lp-btn-primary-bg) !important;
  color: var(--lp-btn-primary-color) !important;
  padding: 13px 30px !important;
  font-weight: 700 !important;
  border-radius: var(--lp-btn-radius) !important;
  width: 100% !important;
  font-size: 1rem !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .2s, color .2s, border-color .2s;
}
.lp-form-card .gform_wrapper .gform_footer input[type="submit"]:hover,
.lp-form-card .gform_wrapper .gform_footer input.gform_button:hover,
.lp-form-card .gform_wrapper .gform_footer .gform_button:hover,
.lp-form-card .gform_wrapper .gform_footer button:hover {
  background: var(--lp-btn-primary-hover-bg) !important;
  background-color: var(--lp-btn-primary-hover-bg) !important;
  border-color: var(--lp-btn-primary-hover-bg) !important;
  color: var(--lp-btn-primary-hover-color) !important;
}

/* Hero — Centered mode (when show_form is off) */
.lp-hero-centered .lp-hero-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.lp-hero-centered h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.lp-hero-centered .lp-hero-buttons { justify-content: center; }

/* ============================================================
   ACCREDITATIONS
   ============================================================ */
.lp-accreditations { background: #fff; }
.lp-accreditations h2 { text-align: center; margin-bottom: 40px; }
.lp-accreditations .swiper { padding: 0 50px; position: relative; }
.lp-accreditations .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-accreditations .swiper-slide img {
  width: 227px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
/* Side arrow controls */
.lp-accreditations .lp-acc-arrow {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border: 0;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lp-accreditations .lp-acc-arrow:hover { background: var(--lp-primary-h); }
.lp-accreditations .lp-acc-arrow::after {
  font-family: 'swiper-icons';
  font-size: 16px;
  font-weight: 700;
}
.lp-accreditations .swiper-button-prev { left: 0; }
.lp-accreditations .swiper-button-prev::after { content: 'prev'; }
.lp-accreditations .swiper-button-next { right: 0; }
.lp-accreditations .swiper-button-next::after { content: 'next'; }
.lp-accreditations .swiper-button-disabled { opacity: .35; cursor: default; }

/* ============================================================
   INTRO SECTIONS
   ============================================================ */
.lp-intro h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.lp-intro .lp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  margin: 1.25rem 0;
}
@media (max-width: 575px) {
  .lp-intro .lp-intro-grid { grid-template-columns: 1fr; }
}
.lp-intro-v2 .lp-intro-image {
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
}
.lp-intro-v2 .lp-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-intro .lp-subtext { color: var(--lp-primary); font-weight: 700; margin-bottom: .5rem; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.lp-why-choose h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

/* V1 */
.lp-why-v1 .lp-feature-card {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 18px 20px;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lp-why-v1 .lp-feature-card .lp-fc-icon {
  color: var(--lp-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-why-v1 .lp-feature-card h5 { font-size: 1rem; margin-bottom: 4px; }
.lp-why-v1 .lp-feature-card p  { color: var(--lp-text); margin: 0; }
.lp-why-v1 .lp-feature-card .lp-fc-icon img { width: 24px; height: 24px; object-fit: contain; }
.lp-elements-light .lp-feature-card p { color: var(--lp-text-light); }

/* V2 */
.lp-why-v2 .lp-wc-card {
  background: var(--lp-sub-container-bg);
  border-radius: var(--lp-radius);
  padding: 28px;
  height: 100%;
}
.lp-why-v2 .lp-wc-card h4 { font-size: 1.1rem; margin-bottom: .75rem; }

/* V3 */
.lp-why-v3 .lp-wc3-card {
  background: var(--lp-sub-container-bg);
  border-radius: var(--lp-radius);
  padding: 28px;
  height: 100%;
}
.lp-why-v3 .lp-wc3-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}
.lp-why-v3 .lp-wc3-icon img { width: 100%; height: 100%; object-fit: contain; }
.lp-why-v3 .lp-wc3-icon-default {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  font-size: 1rem;
}
.lp-why-v3 .lp-wc3-card h4 { font-size: 1.1rem; margin-bottom: .75rem; }

/* ============================================================
   OUR SERVICES
   ============================================================ */
.lp-services h2.lp-services-heading { text-align: center; margin-bottom: 40px; font-size: clamp(1.6rem, 3vw, 2.5rem); }

/* V1 & V2 – Grid cards */
.lp-service-card-v1,
.lp-service-card-v2 {
  background: var(--lp-sub-container-bg);
  border-radius: var(--lp-radius);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lp-service-card-v1 .lp-svc-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}
.lp-service-card-v1 .lp-svc-icon img { width: 100%; object-fit: contain; }
.lp-service-card-v1 .lp-svc-icon-default {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
}
.lp-service-card-v1 h5,
.lp-service-card-v2 h5 { font-size: 1rem; margin-bottom: 8px; }
.lp-service-card-v1 p,
.lp-service-card-v2 p  { color: var(--lp-text); flex: 1; }
.lp-elements-light .lp-service-card-v1 p,
.lp-elements-light .lp-service-card-v2 p { color: var(--lp-text-light); }
.lp-service-card-v2 .lp-svc-img {
  border-radius: var(--lp-radius) var(--lp-radius) 0 0;
  height: 180px;
  overflow: hidden;
  margin: -24px -24px 18px;
}
.lp-service-card-v2 .lp-svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* V3 – Left content + Swiper carousel */
.lp-services-v3 .lp-sv3-left { padding-right: 40px; }
.lp-services-v3 .lp-sv3-card {
  background: var(--lp-sub-container-bg);
  border-radius: var(--lp-radius);
  overflow: hidden;
}
.lp-services-v3 .lp-sv3-card .lp-sv3-img {
  height: 200px;
  overflow: hidden;
}
.lp-services-v3 .lp-sv3-card .lp-sv3-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-services-v3 .lp-sv3-card .lp-sv3-body { padding: 18px 20px; }
.lp-services-v3 .swiper { padding-bottom: 40px !important; }
.lp-services-v3 .swiper-pagination-bullet-active { background: var(--lp-primary) !important; }

/* V4 – Tabs */
.lp-services-v4 .lp-tabs-nav {
  border-bottom: 2px solid var(--lp-border);
  margin-bottom: 32px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-services-v4 .lp-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--lp-text-muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.lp-services-v4 .lp-tab-btn.active {
  color: var(--lp-primary);
  border-bottom-color: var(--lp-primary);
}
.lp-services-v4 .lp-tab-pane { display: none; }
.lp-services-v4 .lp-tab-pane.active { display: flex; flex-wrap: wrap; gap: 32px; }
.lp-services-v4 .lp-tab-pane .lp-tab-content { flex: 1; min-width: 280px; }
.lp-services-v4 .lp-tab-pane .lp-tab-image {
  flex: 0 0 40%;
  border-radius: var(--lp-radius);
  overflow: hidden;
}
.lp-services-v4 .lp-tab-pane .lp-tab-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

/* V1 */
.lp-testimonials-v1 { padding: 80px 0; }
.lp-testimonials-v1.lp-elements-light { background: var(--lp-dark); }
.lp-testimonials-v1 h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.lp-tcard {
  background: var(--lp-sub-container-bg);
  border-radius: var(--lp-radius-lg);
  padding: 28px 24px;
}
.lp-tcard .lp-tcard-line {
  width: 38px;
  height: 3px;
  background: var(--lp-primary);
  margin-bottom: 18px;
}
.lp-tcard .lp-tcard-quote { line-height: 1.7; margin-bottom: 16px; }
.lp-tcard .lp-tcard-author { font-weight: 800; font-size: .95rem; }

/* V2 */
.lp-testimonials-v2 {
  min-height: 400px;
  display: flex;
  align-items: center;
}
.lp-testimonials-v2 .lp-tv2-content { text-align: center; max-width: 680px; margin: 0 auto; }
.lp-testimonials-v2 .lp-tv2-content h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 1rem; }
.lp-testimonials-v2 .lp-tv2-quote { font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.lp-testimonials-v2 .lp-tv2-author { font-weight: 700; margin-bottom: 1.5rem; }
.lp-testimonials-v2 .lp-tv2-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.lp-tv2-arrow {
  background: none;
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  font-size: 1rem;
  flex-shrink: 0;
}
.lp-tv2-arrow:hover { background: rgba(255,255,255,.15); }
.lp-tv2-slide {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--lp-radius-lg);
  padding: 36px 40px;
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}
@media (max-width: 575px) { .lp-tv2-slide { padding: 24px 20px; } }
.lp-testimonials-v2 .lp-tv2-subtitle { font-size: 1rem; margin-bottom: .75rem; }
.lp-testimonials-v2 .lp-tv2-section-btn { margin-bottom: 2rem; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.lp-service-areas h2 { text-align: center; }
.lp-service-areas .lp-sa-intro { text-align: center; max-width: 800px; margin: 0 auto 30px; color: var(--lp-text-muted); }
.lp-service-areas .lp-map-wrap {
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--lp-shadow);
}
.lp-service-areas .lp-map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.lp-service-areas .lp-areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px 16px; }
@media (max-width: 767px) { .lp-service-areas .lp-areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-service-areas .lp-areas-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq.lp-elements-light { background: var(--lp-dark); }
.lp-faq h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: .5rem; }
.lp-faq .lp-faq-intro { margin-bottom: 1.5rem; }
.lp-faq .lp-faq-btns { margin-bottom: 2rem; display: flex; gap: 12px; flex-wrap: wrap; }
.lp-accordion .accordion-item {
  background: var(--lp-sub-container-bg);
  border: 1px solid #3a3a3a;
  border-radius: var(--lp-radius) !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.lp-accordion .accordion-button {
  background: var(--lp-sub-container-bg);
  color: #fff;
  font-weight: 700;
  font-size: .97rem;
  box-shadow: none !important;
  padding: 18px 20px;
}
.lp-accordion .accordion-button:not(.collapsed) {
  background: var(--lp-sub-container-bg);
  color: var(--lp-primary);
}
.lp-accordion .accordion-button::after { filter: invert(1) brightness(2); }
.lp-accordion .accordion-button:not(.collapsed)::after { filter: none; }
.lp-accordion .accordion-body {
  background: var(--lp-sub-container-bg);
  color: var(--lp-text-light);
  padding: 0 20px 20px;
  line-height: 1.7;
}
.lp-faq-icon { color: var(--lp-primary); margin-right: 10px; }
.lp-faq-icon-img { width: 20px; height: 20px; object-fit: contain; margin-right: 10px; flex-shrink: 0; }

/* ============================================================
   FORM SECTION
   ============================================================ */
.lp-form-section.lp-elements-light { background: var(--lp-dark); }
.lp-form-section .lp-form-wrap {
  background: #fff;
  border-radius: var(--lp-radius-lg);
  padding: 50px 44px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 10px 50px rgba(0,0,0,.35);
}
.lp-form-section .lp-form-wrap h2 { text-align: center; margin-bottom: .5rem; color: var(--lp-dark); font-size: 2rem; }
.lp-form-section .lp-form-wrap .lp-form-desc { text-align: center; color: var(--lp-text-muted); margin-bottom: 2rem; }
/* Gravity Forms full-width submit */
.lp-form-section .gform_wrapper .gfield { min-width: 0; }
.lp-form-section .gform_wrapper .gform_footer input[type="submit"],
.lp-form-section .gform_wrapper .gform_footer input.gform_button,
.lp-form-section .gform_wrapper .gform_footer .gform_button,
.lp-form-section .gform_wrapper .gform_footer button {
  background: var(--lp-btn-primary-bg) !important;
  background-color: var(--lp-btn-primary-bg) !important;
  border: 2px solid var(--lp-btn-primary-bg) !important;
  color: var(--lp-btn-primary-color) !important;
  width: 100% !important;
  padding: 14px !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  border-radius: var(--lp-btn-radius) !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .2s, color .2s, border-color .2s;
}
.lp-form-section .gform_wrapper .gform_footer input[type="submit"]:hover,
.lp-form-section .gform_wrapper .gform_footer input.gform_button:hover,
.lp-form-section .gform_wrapper .gform_footer .gform_button:hover,
.lp-form-section .gform_wrapper .gform_footer button:hover {
  background: var(--lp-btn-primary-hover-bg) !important;
  background-color: var(--lp-btn-primary-hover-bg) !important;
  border-color: var(--lp-btn-primary-hover-bg) !important;
  color: var(--lp-btn-primary-hover-color) !important;
}
@media (max-width: 575px) { .lp-form-section .lp-form-wrap { padding: 32px 20px; } }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.lp-cta-v1 {
  padding: 80px 0;
  position: relative;
}
.lp-cta-v1.lp-elements-light { background: var(--lp-dark-2); }
.lp-cta-v1.lp-bg-section { background-size: cover; background-position: center; }
.lp-cta-v1 > .container { position: relative; z-index: 1; }
.lp-cta-v1 h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1rem; }
.lp-cta-v1 p  { margin-bottom: 1.75rem; }
.lp-cta-v1 .lp-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Centered alignment (default) */
.lp-cta-v1.lp-cta-centered { text-align: center; }
.lp-cta-v1.lp-cta-centered p { max-width: 680px; margin-left: auto; margin-right: auto; }
.lp-cta-v1.lp-cta-centered .lp-cta-btns { justify-content: center; }

/* Left alignment (constrained to col-lg-8) */
.lp-cta-v1.lp-cta-left .lp-cta-btns { justify-content: flex-start; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .lp-section { padding: 60px 0; }
  .lp-hero { min-height: auto; }
  .lp-hero > .container { padding-top: 50px; padding-bottom: 50px; }
  .lp-form-card { margin-top: 30px; }
  .lp-services-v3 .lp-sv3-left { padding-right: 0; margin-bottom: 30px; }
}
@media (max-width: 575px) {
  .lp-section { padding: 48px 0; }
  .lp-services-v4 .lp-tab-pane.active { flex-direction: column; }
  .lp-testimonials-v1 .row .col-lg-8 { margin-top: 30px; }
  .lp-nav > .container > div { flex-direction: column !important; align-items: center !important; gap: 14px; }
  .lp-nav .lp-nav-actions { justify-content: center; gap: 10px; width: 100%; }
  .lp-nav .lp-nav-actions .btn-lp-primary,
  .lp-nav .lp-nav-actions .btn-lp-secondary,
  .lp-nav .lp-nav-actions .btn-lp-text { flex: 1; text-align: center; padding: 10px 16px; font-size: .9rem; }
}

/* ---- Gravity Forms global tweaks ---- */
.gform_wrapper.gravity-theme .gfield_label { font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.gform_wrapper.gravity-theme .ginput_container input,
.gform_wrapper.gravity-theme .ginput_container select,
.gform_wrapper.gravity-theme .ginput_container textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: .92rem;
}
.gform_wrapper.gravity-theme .gfield_required { color: var(--lp-primary); font-style: italic; }
.lp-form-card .gform_wrapper .gform_fields,
.lp-form-section .gform_wrapper .gform_fields { row-gap: 8px; }
.lp-form-card .gform_wrapper .gfield,
.lp-form-section .gform_wrapper .gfield { min-width: 0; }
