/* ========================================
   NEW HOMEPAGE STYLES
   Matching PPC Landing Page Design
   ======================================== */

:root {
  --primary-green: #006a4e;
  --primary-dark: #0f4643;
  --primary-light: #89d6c2;
  --accent-purple: #6a1b9a;
  --accent-blue: #3b82f6;
  --accent-yellow: #eab308;
  --text-dark: #111827;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
}

/* ========================================
   HERO SECTION
   ======================================== */
.c-hero-new {
  background: linear-gradient(135deg, #0f2e48 0%, #006a4e 50%, #0f4643 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Account for sticky header */
}

@media (max-width: 991px) {
  .c-hero-new {
    padding-top: 0px;
    min-height: auto;
    padding-bottom: 0px;
  }
}

.c-hero-new__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.c-hero-new__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.c-hero-new__badge-link {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  transition: transform 0.3s ease;
}

.c-hero-new__badge-link:hover {
  transform: scale(1.05);
}

.c-hero-new__content {
  position: relative;
  z-index: 10;
  padding: 20px 20px 60px;
}

.c-hero-new__logo {
  height: 45px;
  width: auto;
  margin-bottom: 20px;
}

.c-hero-new__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.c-hero-new__title span {
  color: #89d6c2;
}

.c-hero-new__description {
  font-size: 18px;
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}

.c-hero-new__description strong {
  color: #fff;
}

/* Trust Badges - Glassmorphism */
.c-hero-new__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.c-hero-new__trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}

.c-hero-new__trust-badge i {
  color: #89d6c2;
  font-size: 16px;
}

/* CTA Buttons */
.c-hero-new__cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.c-hero-new__cta-primary {
  background: #ffffff;
  color: #006a4e;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: ctaPulse 2s infinite;
}

.c-hero-new__cta-primary:hover {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6);
  animation: none;
}

.c-hero-new__cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.c-hero-new__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Social Proof */
.c-hero-new__social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.c-hero-new__avatars {
  display: flex;
}

.c-hero-new__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.c-hero-new__avatar:not(:first-child) {
  margin-left: -12px;
}

.c-hero-new__rating {
  color: #fff;
}

.c-hero-new__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.c-hero-new__stars i {
  color: #fbbf24;
  font-size: 14px;
}

.c-hero-new__rating-text {
  font-size: 14px;
  opacity: 0.9;
}

/* Form Card */
.c-hero-new__form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 32px;
}

.c-hero-new__form-header {
  text-align: center;
  margin-bottom: 24px;
}

.c-hero-new__form-title {
  font-size: 24px;
  font-weight: 700;
  color: #006a4e;
  margin-bottom: 8px;
}

.c-hero-new__form-subtitle {
  color: #6b7280;
  font-size: 14px;
}

/* Mobile CTA */
.c-hero-new__mobile-cta {
  text-align: center;
}

.c-hero-new__mobile-btn {
  width: 100%;
  background: #ffffff;
  color: #006a4e;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.c-hero-new__mobile-call {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .c-hero-new__logo {
    height: 35px !important;
  }

  .c-hero-new__trust-badges {
    margin-bottom: 20px;
    gap: 8px;
  }

  .c-hero-new__trust-badge {
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border: none;
    font-size: 13px;
  }

  .c-hero-new__social-proof {
    justify-content: center;
  }

  .c-hero-new__avatars {
    display: none;
  }

  .c-hero-new__rating {
    text-align: center;
  }

  .c-hero-new__badge-link {
    top: 10px;
    right: 10px;
  }

  .c-hero-new__badge-link img {
    width: 80px !important;
    height: 80px !important;
  }
}

/* ========================================
   LICENSE BADGE BAR
   ======================================== */
.c-license-bar {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.c-license-bar__content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.c-license-bar__icon {
  color: #006a4e;
  font-size: 20px;
}

.c-license-bar__text {
  font-size: 15px;
  color: #374151;
  font-weight: 600;
}

.c-license-bar__divider {
  font-size: 14px;
  color: #9ca3af;
}

.c-license-bar__link {
  font-size: 14px;
  color: #006a4e;
  font-weight: 600;
  text-decoration: none;
}

.c-license-bar__link:hover {
  text-decoration: underline;
  color: #006a4e;
}

/* ========================================
   STATS BAR - WITH ICONS
   ======================================== */
.c-stats-bar {
  background: #ffffff;
  padding: 50px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.c-stats-bar__item {
  text-align: center;
}

.c-stats-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.c-stats-bar__icon i {
  font-size: 28px;
}

.c-stats-bar__value {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 5px;
}

.c-stats-bar__label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}

@media (max-width: 767px) {
  .c-stats-bar__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .c-stats-bar__icon i {
    font-size: 20px;
  }

  .c-stats-bar__value {
    font-size: 24px;
    margin-bottom: 3px;
  }

  .c-stats-bar__label {
    font-size: 12px;
    line-height: 1.3;
  }
}

/* ========================================
   SERVICES GRID SECTION
   ======================================== */
.c-services-grid {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  padding: 100px 20px;
}

.c-services-grid__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 106, 78, 0.08);
  color: #047857;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.c-services-grid__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.c-services-grid__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.c-services-grid__subtitle {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
}

.c-services-grid__card {
  background: #ffffff;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  padding: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  height: 100%;
}

.c-services-grid__card:hover {
  border-color: #006a4e;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.c-services-grid__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.c-services-grid__card-check {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-services-grid__card-check i {
  color: #ffffff;
  font-size: 16px;
}

.c-services-grid__card-title {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.c-services-grid__card-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.c-services-grid__cta {
  text-align: center;
  margin-top: 50px;
}

.c-services-grid__cta-btn {
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 106, 78, 0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.c-services-grid__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 106, 78, 0.4);
}

.c-services-grid__cta-note {
  font-size: 14px;
  color: #6b7280;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Architect Referral Box */
.c-services-grid__referral {
  margin-top: 60px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid #006a4e;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.c-services-grid__referral-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  border-radius: 50%;
  margin-bottom: 20px;
}

.c-services-grid__referral-icon i {
  color: #ffffff;
  font-size: 28px;
}

.c-services-grid__referral-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}

.c-services-grid__referral-desc {
  font-size: 18px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 25px;
}

.c-services-grid__referral-features {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.c-services-grid__referral-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #006a4e;
  font-weight: 600;
}

@media (max-width: 991px) {
  .c-services-grid__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .c-services-grid {
    padding: 60px 20px;
  }

  .c-services-grid__cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PROCESS SECTION (HOW IT WORKS)
   ======================================== */
.c-process-new {
  background: linear-gradient(135deg, #0f2e48 0%, #006a4e 50%, #0f4643 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.c-process-new__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.c-process-new__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.c-process-new__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.c-process-new__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.c-process-new__step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.c-process-new__step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.c-process-new__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  border-radius: 20px;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.c-process-new__step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.c-process-new__step-desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* ========================================
   REVIEWS CAROUSEL SECTION
   ======================================== */
.c-reviews {
  background: #ffffff;
  padding: 100px 20px;
}

.c-reviews__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.c-reviews__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(254, 243, 199, 0.5);
  color: #92400e;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.c-reviews__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.c-reviews__subtitle {
  font-size: 20px;
  color: #6b7280;
}

.c-reviews__carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.c-reviews__slider {
  overflow: hidden;
  padding: 0 60px;
}

.c-reviews__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.c-reviews__slide {
  min-width: 100%;
  padding: 0 15px;
}

.c-reviews__card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid #f3f4f6;
  max-width: 900px;
  margin: 0 auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.c-reviews__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: center;
}

.c-reviews__stars i {
  color: #fbbf24;
  font-size: 20px;
}

.c-reviews__content {
  margin-bottom: 30px;
  flex: 1;
}

.c-reviews__text {
  color: #374151;
  line-height: 1.8;
  font-size: 17px;
  text-align: center;
  margin: 0;
}

.c-reviews__read-more {
  background: transparent;
  border: none;
  color: #006a4e;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.c-reviews__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.c-reviews__avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.c-reviews__author-name {
  font-weight: 700;
  color: #111827;
  font-size: 18px;
  margin-bottom: 4px;
}

.c-reviews__source-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Navigation Buttons */
.c-reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 10;
}

.c-reviews__nav:hover {
  background: #006a4e;
  border-color: #006a4e;
}

.c-reviews__nav:hover i {
  color: #ffffff;
}

.c-reviews__nav i {
  color: #006a4e;
  font-size: 20px;
  transition: color 0.3s;
}

.c-reviews__nav--prev {
  left: 0;
}

.c-reviews__nav--next {
  right: 0;
}

/* Dots Indicator */
.c-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.c-reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.c-reviews__dot.is-active {
  width: 30px;
  background: #006a4e;
}

@media (max-width: 767px) {
  .c-reviews__slider {
    padding: 0 20px;
  }

  .c-reviews__nav {
    display: none;
  }
}

/* ========================================
   CTA BANNER
   ======================================== */
.c-cta-banner {
  background: linear-gradient(135deg, #006a4e 0%, #0f4643 100%);
  padding: 60px 20px;
  color: #ffffff;
}

.c-cta-banner__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.c-cta-banner__text {
  font-size: 18px;
  margin: 0;
  opacity: 0.95;
}

.c-cta-banner__btn {
  background: #ffffff;
  color: #006a4e;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.c-cta-banner__btn:hover {
  transform: scale(1.05);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.c-why-choose-new {
  background: #f9fafb;
  padding: 100px 20px;
}

.c-why-choose-new__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.c-why-choose-new__tagline {
  font-size: 22px;
  font-weight: 700;
  color: #006a4e;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.c-why-choose-new__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.c-why-choose-new__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.c-why-choose-new__card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.c-why-choose-new__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(0, 106, 78, 0.08);
  border-radius: 16px;
  margin-bottom: 20px;
}

.c-why-choose-new__card-icon i {
  color: #006a4e;
  font-size: 28px;
}

.c-why-choose-new__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.c-why-choose-new__card-desc {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* ========================================
   SERVICE AREAS SECTION
   ======================================== */
.c-service-areas-banner {
  background: linear-gradient(90deg, #006a4e 0%, #89d6c2 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.c-service-areas-banner__icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.c-service-areas-banner__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.c-service-areas-banner__text {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.c-service-areas-banner__btn {
  background: #ffffff;
  color: #006a4e;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.c-service-areas-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.c-faq {
  background: #ffffff;
  padding: 100px 20px;
}

.c-faq__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.c-faq__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.08);
  color: #1e40af;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.c-faq__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.c-faq__list {
  max-width: 900px;
  margin: 0 auto;
}

.c-faq__item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid #f3f4f6;
  overflow: hidden;
  transition: all 0.3s;
}

.c-faq__question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #111827;
  transition: color 0.3s;
}

.c-faq__question-text {
  padding-right: 20px;
}

.c-faq__question-icon {
  color: #006a4e;
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.c-faq__question-icon.is-open {
  transform: rotate(180deg);
}

.c-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.c-faq__answer.is-open {
  max-height: 500px;
  padding: 0 30px 25px;
  border-top: 1px solid #f3f4f6;
}

.c-faq__answer-text {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
}

/* ========================================
   STICKY FLOATING CTA
   ======================================== */
.c-sticky-cta {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  animation: slideUp 0.3s ease-out;
}

.c-sticky-cta__btn {
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  color: #ffffff;
  padding: 18px 30px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 106, 78, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.c-sticky-cta__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 106, 78, 0.5);
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.c-final-cta {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.c-final-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.c-final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-final-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 70, 67, 0.9);
}

.c-final-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.c-final-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.c-final-cta__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}

.c-final-cta__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.c-final-cta__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 14px;
}

.c-final-cta__badge i {
  color: #89d6c2;
}

.c-final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.c-final-cta__btn-primary {
  background: #89d6c2;
  color: #0f4643;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.c-final-cta__btn-primary:hover {
  background: #6bc4ae;
  transform: translateY(-2px);
}

.c-final-cta__btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.c-final-cta__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.c-final-cta__note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 32px;
}

/* ========================================
   ABOUT CONTENT SECTION
   ======================================== */
.c-about-section {
  background: #ffffff;
  padding: 100px 20px;
}

.c-about-section__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.c-about-section__stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 70, 67, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.c-about-section__stat {
  text-align: center;
  color: #fff;
}

.c-about-section__stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #89d6c2;
}

.c-about-section__stat-label {
  font-size: 12px;
  opacity: 0.9;
}

.c-about-section__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Services Section */
.c-services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 20px;
}

.c-services-section__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.c-services-section__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.c-services-section__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-services-section__icon i {
  color: #fff;
  font-size: 24px;
}

/* States Section */
.c-states-section {
  background: #ffffff;
  padding: 80px 20px;
  border-top: 1px solid #e5e7eb;
}

.c-states-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.c-states-section__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.c-states-section__link:hover {
  background: #006a4e;
  color: #fff;
  border-color: #006a4e;
}

.c-states-section__link:hover i {
  color: #89d6c2;
}

.c-states-section__link i {
  color: #006a4e;
}

/* Architect Referral */
.c-architect-referral {
  background: #f8fafc;
  padding: 80px 20px;
}

.c-architect-referral__card {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid #006a4e;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.c-architect-referral__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #006a4e 0%, #89d6c2 100%);
  border-radius: 50%;
  margin-bottom: 25px;
}

.c-architect-referral__badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.c-architect-referral__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #006a4e;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  border-radius: 8px;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991px) {
  /* Hero Section Mobile */
  .c-hero-new {
    padding: 40px 0 60px;
    min-height: auto;
  }

  .c-hero-new__title {
    font-size: 1.75rem;
    text-align: center;
  }

  .c-hero-new__description {
    font-size: 16px;
    text-align: center;
  }

  .c-hero-new__trust-badges {
    justify-content: center;
  }

  .c-hero-new__trust-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .c-hero-new__social-proof {
    justify-content: center;
  }

  /* Stats Bar Mobile */
  .c-stats-bar {
    padding: 30px 15px;
  }

  .c-stats-bar__item {
    text-align: center;
  }

  .c-stats-bar__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .c-stats-bar__icon i {
    font-size: 20px;
  }

  .c-stats-bar__value {
    font-size: 20px;
  }

  .c-stats-bar__label {
    font-size: 11px;
    line-height: 1.3;
  }

  /* Process Section Mobile */
  .c-process-new {
    padding: 60px 15px;
  }

  .c-process-new__step {
    padding: 25px 20px;
  }

  .c-process-new__step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .c-process-new__step-title {
    font-size: 18px;
  }

  .c-process-new__step-desc {
    font-size: 14px;
  }

  /* Reviews Section Mobile */
  .c-reviews {
    padding: 60px 15px;
  }

  .c-reviews__slider {
    padding: 0;
  }

  .c-reviews__card {
    padding: 25px 20px;
    min-height: auto;
  }

  .c-reviews__text {
    font-size: 15px;
  }

  .c-reviews__avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .c-reviews__author-name {
    font-size: 16px;
  }

  .c-reviews__nav-btn {
    display: none;
  }

  /* FAQ Section Mobile */
  .c-faq {
    padding: 60px 15px;
  }

  .c-faq__item {
    border-radius: 12px;
  }

  .c-faq__question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .c-faq__answer.is-open {
    padding: 0 20px 20px;
  }

  .c-faq__answer-text {
    font-size: 14px;
  }

  /* Final CTA Mobile */
  .c-final-cta {
    padding: 60px 20px;
  }

  .c-final-cta__subtitle {
    font-size: 16px;
  }

  .c-final-cta__buttons {
    flex-direction: column;
  }

  .c-final-cta__btn-primary,
  .c-final-cta__btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
  }

  .c-final-cta__badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Sticky CTA Mobile */
  .c-sticky-cta {
    bottom: 20px;
    right: 15px;
    left: 15px;
  }

  .c-sticky-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  /* Architect Referral Mobile */
  .c-architect-referral {
    padding: 40px 15px;
  }

  .c-architect-referral__card {
    padding: 30px 20px;
  }

  .c-architect-referral__icon {
    width: 60px;
    height: 60px;
  }

  .c-architect-referral__badges {
    gap: 10px;
  }

  .c-architect-referral__badge {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* About Section Mobile */
  .c-about-section {
    padding: 60px 15px;
  }

  .c-about-section__stats-overlay {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .c-about-section__stat-value {
    font-size: 22px;
  }

  .c-about-section__divider {
    display: none;
  }

  /* Services Section Mobile */
  .c-services-section {
    padding: 60px 15px;
  }

  .c-services-section__card {
    padding: 20px;
  }

  .c-services-section__icon {
    width: 45px;
    height: 45px;
  }

  .c-services-section__icon i {
    font-size: 20px;
  }

  /* States Section Mobile */
  .c-states-section {
    padding: 60px 15px;
  }

  .c-states-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .c-states-section__link {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* Why Choose Us Mobile */
  .c-why-choose-new {
    padding: 60px 15px;
  }

  .c-why-choose-new__tagline {
    font-size: 16px;
  }

  .c-why-choose-new__card {
    padding: 25px 20px;
  }

  .c-why-choose-new__card-icon {
    width: 50px;
    height: 50px;
  }

  .c-why-choose-new__card-icon i {
    font-size: 22px;
  }

  .c-why-choose-new__card-title {
    font-size: 17px;
  }

  .c-why-choose-new__card-desc {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  /* Extra small devices */
  .c-hero-new__title {
    font-size: 1.5rem;
  }

  .c-hero-new__trust-badges {
    gap: 6px;
  }

  .c-hero-new__trust-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .c-stats-bar__value {
    font-size: 18px;
  }

  .c-stats-bar__label {
    font-size: 10px;
  }

  .c-reviews__card {
    padding: 20px 15px;
  }

  .c-faq__question {
    font-size: 14px;
    padding: 15px;
  }

  .c-faq__answer-text {
    font-size: 13px;
  }
}
