/* ============================================
   index.html 页面专属样式
   来源: <style id='bricks-frontend-inline-inline-css'>
   排除 header/footer 共享部分
   ============================================ */

:root {
  --min-viewport: 360;
  --max-viewport: 1499;
  --base-font: 10;
  --clamp-unit: 1vw;
}

/* ---- Video Banner (Hero) ---- */
.video-banner {
  position: relative;
  margin-top: -95px;
  width: 100%;
  min-height: calc(100vh + 95px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-banner__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.video-banner__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

.video-banner__title {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.video-banner__subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* 第一屏内容入场：标题 → 副标题 → 按钮 依次浮入 */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-banner__title,
.video-banner__subtitle,
.video-banner__actions {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.video-banner__title {
  animation-delay: 0.15s;
}

.video-banner__subtitle {
  animation-delay: 0.35s;
}

.video-banner__actions {
  animation-delay: 0.55s;
}

.video-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.video-banner__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 62px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease,
    color 0.35s ease, border-color 0.35s ease;
}

.video-banner__btn-label {
  white-space: nowrap;
}

/* 主按钮：渐变绿 + 白色圆形箭头徽章 + 呼吸光环 */
.video-banner__btn--primary {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #62c065 0%, #43a848 52%, #358a3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 7px 7px 32px;
  box-shadow: 0 16px 32px -12px rgba(53, 138, 58, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.08);
  animation: heroBtnPulse 2.8s ease-out 1.8s infinite;
}

/* 呼吸光环：轻量提示可点击，不外溢抢焦点 */
@keyframes heroBtnPulse {
  0% {
    box-shadow: 0 16px 32px -12px rgba(53, 138, 58, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -2px 6px rgba(0, 0, 0, 0.08),
      0 0 0 0 rgba(98, 192, 101, 0.45);
  }
  70% {
    box-shadow: 0 16px 32px -12px rgba(53, 138, 58, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -2px 6px rgba(0, 0, 0, 0.08),
      0 0 0 14px rgba(98, 192, 101, 0);
  }
  100% {
    box-shadow: 0 16px 32px -12px rgba(53, 138, 58, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -2px 6px rgba(0, 0, 0, 0.08),
      0 0 0 0 rgba(98, 192, 101, 0);
  }
}

/* 斜向微光扫过 */
.video-banner__btn--primary::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -30%;
  width: 34%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.video-banner__btn--primary:hover::after {
  transform: translateX(430%) skewX(-18deg);
}

.video-banner__btn--primary .video-banner__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #358a3a;
  background: #fff;
  font-size: 0.95em;
  box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.25);
  transition: background-color 0.35s ease, color 0.35s ease;
}

.video-banner__btn--primary .video-banner__btn-icon i {
  transition: transform 0.35s ease;
}

.video-banner__btn--primary:hover {
  transform: translateY(-3px);
  animation-play-state: paused;
  background: linear-gradient(135deg, #55b659 0%, #39943e 52%, #2f8334 100%);
  box-shadow: 0 22px 38px -12px rgba(53, 138, 58, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.08);
}

.video-banner__btn--primary:hover .video-banner__btn-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.video-banner__btn--primary:hover .video-banner__btn-icon i {
  transform: translateX(3px);
}

.video-banner__btn--primary:active {
  transform: translateY(-1px);
}

/* 副按钮：通透毛玻璃描边 */
.video-banner__btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  padding: 0 34px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.video-banner__btn--outline .video-banner__btn-glyph {
  font-size: 1.05em;
  opacity: 0.92;
  transition: transform 0.35s ease;
}

.video-banner__btn--outline:hover {
  color: #2e7d32;
  background: rgba(255, 255, 255, 0.94);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.5);
}

.video-banner__btn--outline:hover .video-banner__btn-glyph {
  transform: scale(1.12);
}

.video-banner__btn--outline:active {
  transform: translateY(-1px);
}

/* 向下滚动提示箭头 */
.video-banner__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  animation: heroScrollBounce 2s ease-in-out infinite;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.video-banner__scroll i {
  font-size: 1.15rem;
}

.video-banner__scroll:hover {
  color: #2e7d32;
  background: rgba(255, 255, 255, 0.92);
  border-color: #fff;
}

@keyframes heroScrollBounce {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.85;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-banner__title,
  .video-banner__subtitle,
  .video-banner__actions,
  .video-banner__btn--primary,
  .video-banner__scroll {
    animation: none;
  }

  .video-banner__btn--primary::after {
    display: none;
  }
}

@media (max-width: 478px) {
  .video-banner__actions {
    gap: 12px;
    margin-top: 28px;
  }

  .video-banner__btn--primary {
    width: 100%;
    justify-content: center;
    padding-left: 22px;
  }

  .video-banner__btn--outline {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
  }
}

@media (max-width: 991px) {
  .video-banner {
    min-height: 50vw;
    margin-top: 0;
    padding-top: 96px;
  }
}

@media (max-width: 767px) {
  .video-banner {
    min-height: 56.25vw;
  }

  .video-banner__scroll {
    display: none;
  }
}

@media (max-width: 478px) {
  .video-banner {
    min-height: 60vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-banner__media {
    display: none;
  }
}

/* ---- Hero Section (legacy) ---- */
#brxe-a07cd6 {
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  background-image: url(https://carterhousing.com/wp-content/uploads/2025/07/bg-car-spare-parts-1024x585.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  row-gap: 30px;
}

#brxe-4d5beb {
  color: #ffffff;
  font-size: 32px;
  font-family: "Archivo";
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 30px;
  padding-left: 50px;
  margin-right: 30px;
  margin-left: 50px;
}

@media (max-width: 767px) {
  #brxe-a07cd6 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #brxe-4d5beb {
    margin-right: 0;
    margin-left: 0;
    font-size: 24px;
  }
}

/* ---- About Section ---- */
#brxe-354b63 {
  flex-direction: row;
  align-self: center !important;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  padding-top: 0;
  padding-bottom: 0;
  row-gap: 30px;
}

#brxe-ce7cbc {
  width: 80%;
}

#brxe-6204c2 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  font-family: "Archivo";
  padding-bottom: 10px;
}

#brxe-5e6cff {
  color: #000000;
  font-family: "Archivo";
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  padding-right: 40px;
}

#brxe-1be2a0 {
  padding-top: 50px;
  padding-bottom: 50px;
  row-gap: 30px;
  align-items: center;
  background-color: #f1f1f1;
}

@media (max-width: 767px) {
  #brxe-1be2a0 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* ---- Why Us Section ---- */
#brxe-0cfcbe {
  justify-content: center;
  align-items: center;
}

#brxe-35007a {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  font-family: "Archivo";
}

#brxe-6f1ae4 {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #daf3e2;
}

@media (max-width: 767px) {
  #brxe-6f1ae4 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

#brxe-e15af8 {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  row-gap: 30px;
}

@media (max-width: 767px) {
  #brxe-e15af8 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

#brxe-2aa532 {
  width: 80%;
}

/* ---- Products Section ---- */
#brxe-2dd1f0 {
  justify-content: center;
  align-items: center;
}

#brxe-92bc23 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  font-family: "Archivo";
}

#brxe-fa3f23 {
  padding-top: 40px;
  padding-bottom: 40px;
  row-gap: 10px;
}

@media (max-width: 767px) {
  #brxe-fa3f23 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

#brxe-50be8b {
  flex-direction: row;
  column-gap: 30px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  #brxe-50be8b {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
    row-gap: 30px;
  }
}

#brxe-9763ad {
  background-color: #f5f5f5;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}

#brxe-353ea0 {
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  font-family: "Archivo";
  text-align: center;
  padding-top: 10px;
}

#brxe-73e2af {
  background-color: #f1f1f1;
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  #brxe-73e2af {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* Statistics highlight number */
.stat-highlight {
  font-size: 1.5em;
}

/* ============================================
   Pop-Up Truck Camper Carousel
   ============================================ */
.camper-carousel {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}

.camper-carousel__viewport {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.camper-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.camper-carousel__track {
  display: flex;
}

.camper-carousel__slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 60px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 400px;
}

.camper-carousel__media {
  flex: 0 0 45%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.camper-carousel__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.camper-carousel__content {
  flex: 1;
  color: #ffffff;
  padding: 20px;
}

.camper-carousel__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4caf50;
  margin-bottom: 12px;
}

.camper-carousel__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  margin: 0 0 24px;
  line-height: 1.2;
}

.camper-carousel__feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 32px;
}

.camper-carousel__feature i {
  font-size: 28px;
  color: #4caf50;
}

.camper-carousel__specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.camper-carousel__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.camper-carousel__spec--lg {
  padding: 24px 44px;
}

.camper-carousel__spec-value {
  font-size: 32px;
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  color: #ffffff;
}

.camper-carousel__spec--lg .camper-carousel__spec-value {
  font-size: 48px;
}

.camper-carousel__spec-unit {
  font-size: 0.5em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
  text-transform: uppercase;
}

.camper-carousel__spec-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.camper-carousel__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  color: #ffffff;
  background: #4caf50;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.camper-carousel__btn:hover {
  background: #43a047;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.camper-carousel__btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.camper-carousel__btn:hover i {
  transform: translateX(4px);
}

/* Navigation arrows */
.camper-carousel__nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.camper-carousel__nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.camper-carousel__nav svg {
  width: 20px;
  height: 20px;
}

.camper-carousel__nav--prev {
  left: 16px;
}

.camper-carousel__nav--next {
  right: 16px;
}

/* Dots */
.camper-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.camper-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.camper-carousel__dot.is-active {
  width: 32px;
  border-radius: 5px;
  background: #4caf50;
}

/* Responsive: tablet */
@media (max-width: 991px) {
  .camper-carousel__slide {
    padding: 0 50px;
    gap: 30px;
  }

  .camper-carousel__media {
    flex: 0 0 40%;
  }
}

/* Responsive: mobile */
@media (max-width: 767px) {
  .camper-carousel {
    padding: 40px 0 60px;
  }

  .camper-carousel__slide {
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    padding: 20px 16px;
    align-items: center;
    justify-content: center;
  }

  .camper-carousel__media {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .camper-carousel__content {
    text-align: center;
    padding: 0;
    width: 100%;
  }

  .camper-carousel__feature {
    justify-content: center;
  }

  .camper-carousel__specs {
    justify-content: center;
  }

  .camper-carousel__nav {
    display: none;
  }

  .camper-carousel__spec {
    padding: 14px 20px;
  }

  .camper-carousel__spec-value {
    font-size: 24px;
  }

  .camper-carousel__spec--lg .camper-carousel__spec-value {
    font-size: 36px;
  }
}

/* Responsive: small mobile */
@media (max-width: 478px) {
  .camper-carousel__specs {
    gap: 10px;
  }

  .camper-carousel__spec {
    flex: 1 1 calc(33.33% - 10px);
    padding: 10px 6px;
    text-align: center;
    align-items: center;
  }

  .camper-carousel__spec-value {
    font-size: 18px;
  }
}

/* ============================================
   Trust Section (Stats & Certifications)
   ============================================ */
#brxe-4d1b81.trust-section {
  background: linear-gradient(180deg, #f5f7fa 0%, #eef1f6 100%) !important;
  background-image: none !important;
  padding: 70px 20px;
}

.trust-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-section__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  min-width: 160px;
}

.trust-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: #d0d5dd;
}

.trust-stat__figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  min-height: 60px;
}

.trust-stat__num {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  font-family: "Archivo", sans-serif;
  color: #1a1a2e;
  line-height: 1;
}

.trust-stat__unit {
  font-size: 18px;
  font-weight: 600;
  color: #4caf50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-stat__label {
  font-size: 15px;
  color: #616161;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-section__certs {
  margin-bottom: 40px;
}

.trust-section__certs p {
  display: inline-block;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 500;
  color: #424242;
  padding: 12px 32px;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 50px;
  margin: 0;
}

.trust-section__features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-section__features img {
  height: 56px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.trust-section__features img:hover {
  opacity: 1;
}

.trust-section__tagline h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .trust-section {
    padding: 50px 16px;
  }

  .trust-section__stats {
    gap: 30px;
  }

  .trust-stat:not(:last-child)::after {
    display: none;
  }

  .trust-section__features {
    gap: 16px;
  }

  .trust-section__features img {
    height: 44px;
  }
}

/* ============================================
   CTA Section (Company Intro)
   Form is loaded as a separate module — see contact-form.css
   ============================================ */
#brxe-c9ec8a.cta-section {
  background: #ffffff !important;
  background-image: none !important;
  padding: 70px 20px;
}

.cta-section__intro {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.cta-section__info {
  flex: 1;
}

.cta-section__info h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  color: #1a1a2e;
  margin: 0 0 20px;
  line-height: 1.3;
}

.cta-section__divider {
  width: 60px;
  height: 3px;
  background: #4caf50;
  border-radius: 2px;
  margin-bottom: 24px;
}

.cta-section__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #616161;
  margin: 0 0 16px;
}

.cta-section__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}

.cta-section__contact i {
  font-size: 32px;
  color: #25d366;
}

.cta-section__contact a {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-section__contact a:hover {
  color: #4caf50;
}

.cta-section__phone {
  font-size: 22px !important;
  font-weight: 700 !important;
  font-family: "Archivo", sans-serif;
}

.cta-section__btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  color: #ffffff;
  background: #4caf50;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section__btn:hover {
  background: #43a047;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.35);
}

.cta-section__image {
  flex: 0 0 35%;
  max-width: 400px;
}

.cta-section__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .cta-section {
    padding: 50px 16px;
  }

  .cta-section__intro {
    flex-direction: column;
    gap: 30px;
  }

  .cta-section__image {
    flex: 0 0 auto;
    max-width: 320px;
  }
}

/* ============================================
   Modular Housing Solutions Section
   ============================================ */
.modular-section {
  background-color: #0d0d0d;
  padding: 80px 20px;
}

.modular-section__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modular-section__title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  text-align: center;
}

.modular-section__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  color: #f5f5f5;
  text-align: center;
  max-width: 700px;
  margin: 0 0 10px;
  line-height: 1.6;
}

.modular-section__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  overflow: hidden;
}

.modular-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.modular-card__link {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.modular-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.modular-card__link:hover::after {
  opacity: 1;
}

.modular-card__link img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 950 / 750;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.modular-card__link:hover img {
  transform: scale(1.05);
}

.modular-card__title {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  border-left: 3px solid #4caf50;
  padding-left: 10px;
  margin: 14px 0 0;
}

.modular-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.modular-card__title a:hover {
  color: #4caf50;
}

@media (max-width: 991px) {
  .modular-section__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .modular-section {
    padding: 50px 16px;
  }

  .modular-section__row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }
}

/* ============================================
   Blog Section (News & Insights)
   ============================================ */
.blog-section {
  background: #ffffff;
  padding: 70px 20px;
}

.blog-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.blog-section__subtitle {
  font-size: 16px;
  color: #616161;
  margin: 0;
}

.blog-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: #c8e6c9;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: rgba(76, 175, 80, 0.9);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.blog-card__body {
  padding: 24px 22px 28px;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  color: #1a1a2e;
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
  color: #4caf50;
}

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #757575;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #4caf50;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-card__more {
  gap: 10px;
}

.blog-card__more i {
  font-size: 12px;
}

.blog-section__footer {
  text-align: center;
  margin-top: 48px;
}

.blog-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 34px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  color: #4caf50;
  background: transparent;
  border: 2px solid #4caf50;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-section__btn:hover {
  color: #ffffff;
  background: #4caf50;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.blog-section__btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.blog-section__btn:hover i {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .blog-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .blog-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 50px 16px;
  }

  .blog-section__header {
    margin-bottom: 36px;
  }

  .blog-section__grid {
    gap: 20px;
  }
}
