/* Live office hours — top header */
.ofc .office-hours__text {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  line-height: 1.3;
}

.office-hours__status {
  font-weight: 600;
}

.office-hours__status::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  background: currentColor;
}

.office-hours--open .office-hours__status {
  color: #7eea57;
}

.office-hours--closed .office-hours__status {
  color: #f87171;
}

.office-hours__clock {
  font-variant-numeric: tabular-nums;
}

.office-hours__hint {
  opacity: 0.85;
  font-size: 0.92em;
}

@media (max-width: 991px) {
  .office-hours__hint {
    display: none;
  }
}

/* Top header bar — responsive layout (email, phones, hours, social) */
.header__top {
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  column-gap: 16px;
}

.header__top .top__left {
  flex-wrap: wrap;
  gap: 8px 20px;
  flex: 1 1 auto;
  min-width: 0;
}

.header__top .top__right {
  flex-wrap: wrap;
  gap: 12px 16px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.header__top .top__right .ofc {
  min-width: 0;
  max-width: 100%;
}

@media screen and (max-width: 1400px) {
  .header__top {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 1280px) {
  .header__top .top__left {
    gap: 8px 16px;
  }

  .header__top .top__left li,
  .header__top .top__left a {
    font-size: 13px;
  }

  .header__top .top__right .ofc {
    font-size: 13px;
  }

  .office-hours__clock {
    display: none;
  }
}

@media screen and (min-width: 992px) and (max-width: 1150px) {
  .header__top {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header__top .top__left {
    justify-content: center;
    width: 100%;
  }

  .header__top .top__right {
    justify-content: center;
    width: 100%;
  }

  .header__top .top__left li:nth-child(3) {
    display: none;
  }
}

/* Minimal SEO/accessibility additions — no visual overrides */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100000;
  background: #7eea57;
  color: #111827;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  top: 1rem;
}

/* Local solar backgrounds — works offline without JS */
.rts-banner-wrapper {
  background-image: url("../assets/images/solar/hero.jpg");
  background-size: cover;
  background-position: center;
  isolation: isolate;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(780px, 88vh);
  padding-top: 48px;
}

@media screen and (max-width: 767px) {
  .rts-banner-wrapper {
    min-height: min(560px, 78vh);
    padding-top: 32px;
    padding-bottom: 48px;
  }
}

.rts__banner__area {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

.rts__about__area {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .rts__banner__area {
    margin-bottom: 32px;
  }
}

.rts-banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    rgba(0, 20, 18, 0.92) 0%,
    rgba(0, 28, 25, 0.78) 35%,
    rgba(0, 37, 36, 0.45) 58%,
    rgba(0, 37, 36, 0.12) 78%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

.rts-banner-wrapper .banner-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.rts-banner-wrapper .banner-card-wrapper {
  z-index: 5;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card {
  position: relative;
  padding: 24px 28px 24px 24px;
  gap: 28px;
  align-items: stretch;
  max-width: 520px;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-thumb {
  flex: 0 0 200px;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-thumb img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 20px;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .card-stat-label {
  color: #6b7280;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 6px 0 18px;
  line-height: 1.35;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .banner-review {
  align-items: center;
  gap: 14px;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .banner-review .client-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .banner-review .client-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d7f448;
  margin-left: -14px;
  background: #fff;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .banner-review .client-avatars img:first-child {
  margin-left: 0;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .banner-review .client-rating {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .banner-review .client-rating .client-count {
  color: var(--rts-heading);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

.rts-banner-wrapper .banner-card-wrapper .inner-card .card-content .banner-review .client-rating .stars i.fa-star-half-stroke {
  color: #9ca3af;
}

.rts-banner-wrapper .banner-content .desc {
  margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
  .rts-banner-wrapper .banner-content .desc {
    margin-bottom: 22px;
  }
}

.rts-banner-wrapper .banner-content .banner-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.rts-banner-wrapper .banner-content .rts-btn.btn-primary,
.rts-banner-wrapper .banner-content .rts-btn.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.rts-banner-wrapper .banner-content .rts-btn.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.rts-banner-wrapper .banner-content .rts-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

/* About page — mission/vision tab stats (3 columns) */
.rts__about__area .about__content .about__stats {
  flex-wrap: wrap;
  gap: 40px 70px;
}

@media screen and (max-width: 575px) {
  .rts__about__area .about__content .about__stats {
    gap: 28px 40px;
  }
}

/* Homepage about block — room for hero stats card overlap */
.index-about-wrapper {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .index-about-wrapper {
    padding-top: 50px;
  }
}

.index-about-wrapper .section-title-area {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}

.index-about-wrapper .section-title-area .desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 100%;
}

.index-about-wrapper .section-title-area .desc + .desc {
  margin-top: 1rem;
}

.rts__breadcrumb__content {
  background-image: url("../assets/images/solar/breadcrumb.jpg");
  background-size: cover;
  background-position: center;
}

.rts__about__area .about__img img,
.index-about-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Video testimonial card — matches dark about panel + brand greens */
.rts__about__area .about__img.index-about-video {
  height: auto !important;
}

.video-testimonial-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(155deg, #0a2822 0%, #004638 52%, #062820 100%);
  border: 1px solid rgba(215, 244, 72, 0.22);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.video-testimonial-card__glow {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 244, 72, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.video-testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.video-testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #D7F448;
  color: #004638;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.video-testimonial-badge i {
  font-size: 11px;
}

.video-testimonial-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.video-testimonial-stars {
  display: flex;
  gap: 3px;
  color: #D7F448;
  font-size: 12px;
  line-height: 1;
}

.video-testimonial-rating__label {
  font-size: 12px;
  color: rgba(210, 233, 196, 0.85);
}

.video-testimonial-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 2px rgba(215, 244, 72, 0.35),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.video-testimonial-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  background: #000;
}

.video-testimonial-card__footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 244, 72, 0.15);
  text-align: center;
}

.video-testimonial-quote-icon {
  display: block;
  margin: 0 auto 10px;
  font-size: 22px;
  color: rgba(215, 244, 72, 0.55);
}

.video-testimonial-caption {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
}

.video-testimonial-meta {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(210, 233, 196, 0.75);
  letter-spacing: 0.03em;
}

@media screen and (max-width: 575px) {
  .video-testimonial-card {
    padding: 16px;
    border-radius: 20px;
  }

  .video-testimonial-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-testimonial-rating {
    align-items: flex-start;
  }

  .video-testimonial-caption {
    font-size: 16px;
  }
}

.index-about-gallery .about-fixing-img {
  margin-top: 1rem;
  max-height: 220px;
  object-fit: cover;
}

/* Blog page — empty state when no posts */
.blog-empty-state {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.blog-empty-state__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #d2e9c4;
  color: #004638;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.blog-empty-state__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: var(--heading-color, #002524);
}

.blog-empty-state__desc {
  color: #516669;
  margin-bottom: 28px;
  line-height: 1.6;
}

.blog-empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer — no newsletter block */
.rts__footer__area .footer__widget__wrapper {
  border-top: none;
  padding-top: 60px;
}

/* SG Solar logo — transparent PNG (no background on the image file) */
.rts__main__header .logo a,
.rts__offcanvas .logo a,
.footer__widget__logo > a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: transparent;
}

.rts__main__header .logo img,
.rts__offcanvas .logo img,
.footer__widget__logo > a img {
  display: block;
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: 200px;
  object-fit: contain;
  background: transparent;
}

/* Dark footer — light pad on logo link only (not social icons) */
.rts__footer__area .footer__widget__logo > a {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
}

.rts__footer__area .footer__widget__logo > a img {
  max-height: 44px;
  max-width: 180px;
}

/* Footer social icons — horizontal row */
.rts__footer__area .footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.rts__footer__area .footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

.rts__footer__area .footer__social a:hover {
  background: #d7f448;
  color: #004638;
}

.rts__footer__area .footer__social a i {
  margin-right: 0;
  color: inherit;
  font-size: 16px;
}

/* Kerala installation map — outline SVG on dark section */
.map__main__wrapper--kerala {
  display: block;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 440px;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.map__main__wrapper--kerala .kerala-map-inner {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 920 / 1800;
}

.map__main__wrapper--kerala img,
.map__main__wrapper--kerala .kerala-map-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* City markers — aligned to kerala-map-clean.svg viewBox */
.map__main__wrapper--kerala .round-shape .one {
  top: 1%;
  left: 8%;
}

.map__main__wrapper--kerala .round-shape .two {
  top: 14%;
  left: 23%;
}

.map__main__wrapper--kerala .round-shape .three {
  top: 48%;
  left: 52%;
}

.map__main__wrapper--kerala .round-shape .four {
  top: 59%;
  left: 60%;
}

.map__main__wrapper--kerala .round-shape .five {
  top: 72%;
  left: 72%;
}

.map__main__wrapper--kerala .round-shape .six {
  top: auto;
  bottom: 0;
  left: 85%;
}

.rts__map__area.bg-one .map__main__wrapper--kerala .round-shape li {
  width: 28px;
  height: 28px;
}

.rts__map__area.bg-one .map__main__wrapper--kerala .round-shape li i {
  font-size: 13px;
}

/* Homepage — project work showcase video section */
.work-showcase-area {
  position: relative;
}

.work-showcase-panel {
  padding: 56px 56px 48px;
  border-radius: 48px;
  background: linear-gradient(145deg, #0a0a0a 0%, #0d1f1a 45%, #004638 100%);
  border: 1px solid rgba(215, 244, 72, 0.14);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.work-showcase-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(215, 244, 72, 0.14);
  color: #D7F448;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-showcase-title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.work-showcase-desc {
  margin-bottom: 24px;
  color: rgba(210, 233, 196, 0.88);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}

.work-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.work-showcase-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(215, 244, 72, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.work-showcase-tags i {
  color: #D7F448;
  font-size: 13px;
}

.work-showcase-cta::before {
  background: #ffffff;
}

.work-showcase-stage {
  position: relative;
}

.work-showcase-stage__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.work-showcase-stage__glow--left {
  top: -30px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: rgba(215, 244, 72, 0.18);
}

.work-showcase-stage__glow--right {
  right: -10px;
  bottom: 40px;
  width: 140px;
  height: 140px;
  background: rgba(0, 70, 56, 0.55);
}

.work-showcase-frame {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(215, 244, 72, 0.12) 0%, rgba(0, 70, 56, 0.35) 100%);
  border: 1px solid rgba(215, 244, 72, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.work-showcase-frame__badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(8px);
  color: #D7F448;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.work-showcase-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  background: #000;
}

.work-showcase-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.work-showcase-highlight {
  padding: 16px 14px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(215, 244, 72, 0.12);
}

.work-showcase-highlight__value {
  display: block;
  color: #D7F448;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.work-showcase-highlight__label {
  display: block;
  margin-top: 6px;
  color: rgba(210, 233, 196, 0.8);
  font-size: 12px;
  line-height: 1.35;
}

@media screen and (max-width: 991px) {
  .work-showcase-panel {
    padding: 36px 28px 32px;
    border-radius: 32px;
  }

  .work-showcase-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .work-showcase-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .work-showcase-tags {
    justify-content: center;
  }

  .work-showcase-cta {
    display: inline-flex;
  }
}

@media screen and (max-width: 575px) {
  .work-showcase-panel {
    padding: 28px 18px 24px;
    border-radius: 24px;
  }

  .work-showcase-highlights {
    grid-template-columns: 1fr;
  }

  .work-showcase-frame__badge {
    top: 20px;
    left: 20px;
    font-size: 11px;
    padding: 7px 12px;
  }
}

/* Project gallery — real SG Solar installations */
.sg-projects-section .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: center;
  gap: 0;
}

.sg-projects-section .section-title .sub-title {
  display: inline-block;
  margin-bottom: 14px;
}

.sg-projects-section .section-title .heading-title {
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: normal;
}

.sg-projects-section .section-title .desc {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.sg-project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.sg-project-filter {
  padding: 10px 22px;
  border: 1px solid rgba(0, 70, 56, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #004638;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sg-project-filter:hover {
  border-color: #004638;
  transform: translateY(-1px);
}

.sg-project-filter.is-active {
  background: #004638;
  border-color: #004638;
  color: #D7F448;
}

.sg-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sg-project-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 70, 56, 0.08);
  box-shadow: 0 12px 40px rgba(0, 37, 36, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sg-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 37, 36, 0.14);
}

.sg-project-card.is-hidden {
  display: none;
}

.sg-project-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d0d0d;
}

.sg-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sg-project-card:hover .sg-project-card__media img {
  transform: scale(1.06);
}

.sg-project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 37, 36, 0.55) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sg-project-card:hover .sg-project-card__overlay {
  opacity: 0.85;
}

.sg-project-card__capacity {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: #D7F448;
  color: #004638;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.sg-project-card__type {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.sg-project-card__type--commercial {
  background: rgba(0, 70, 56, 0.88);
  color: #D7F448;
}

.sg-project-card__type--residential {
  background: rgba(255, 255, 255, 0.92);
  color: #004638;
}

.sg-project-card__body {
  padding: 20px 22px 22px;
}

.sg-project-card__title {
  margin: 0 0 6px;
  color: #002524;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.sg-project-card__subtitle {
  margin: 0 0 12px;
  color: #516669;
  font-size: 14px;
  line-height: 1.45;
}

.sg-project-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #004638;
  font-size: 13px;
  font-weight: 600;
}

.sg-project-card__location i {
  color: #D7F448;
  background: #004638;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.sg-project-cta {
  margin-top: 48px;
}

@media screen and (max-width: 1199px) {
  .sg-project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media screen and (max-width: 575px) {
  .sg-project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sg-project-filters {
    margin-bottom: 28px;
  }

  .sg-project-filter {
    padding: 9px 16px;
    font-size: 13px;
  }

  .sg-project-card__body {
    padding: 16px 18px 18px;
  }
}

