:root {
  --bg-main: #111111;
  --bg-soft: #1b1b1b;
  --text-main: #ffffff;
  --text-muted: #b5b5b5;
  --border-soft: #2a2a2a;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-navbar {
  background: #ffffff;
  border-bottom: 1px solid #d9d9d9;
}

.site-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar .site-logo {
  width: 64px;
  height: 64px;
}

.site-footer .site-logo {
  width: 56px;
  height: 56px;
}

.site-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.brand-text {
  color: #111111;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.navbar .navbar-toggler {
  border-color: #cfcfcf;
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-toggler-icon {
  filter: invert(1);
}

.navbar .nav-link {
  color: #3a3a3a;
  position: relative;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #111111;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.15rem;
  height: 1px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.glass-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 22px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 26px;
}

.stat-card {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 18px;
}

.stat-number {
  font-size: clamp(2.2rem, 2.8vw, 3.2rem);
  font-weight: 700;
  color: #111111;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  color: #4b4b4b;
  font-size: 0.95rem;
}

.gratitude-lead {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  color: #141414;
}

@media (max-width: 767.98px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.slider-wrap {
  background: #0f0f0f;
}

.slider-img {
  height: min(72vh, 680px);
  object-fit: cover;
  filter: brightness(0.62);
  transform: scale(1);
}

.carousel-item.active .slider-img {
  animation: sliderZoom 6s ease-in-out forwards;
}

@keyframes sliderZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.carousel-caption {
  bottom: 12%;
}

.carousel-caption h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  color: #ffffff;
}

.carousel-caption p {
  color: #d6d6d6;
}

.section-dark {
  background: #101010;
}

.section-light {
  background: #f7f7f7;
  color: #141414;
}

.section-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-title-dark {
  color: #111111;
}

.section-text {
  color: #cfcfcf;
}

.about-stats {
  background: #181818;
  border: 1px solid #272727;
  border-radius: 12px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  color: #bfbfbf;
  font-size: 0.9rem;
}

.info-card {
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 1.25rem;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #555555;
  margin-bottom: 0;
}

.service-icon {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  display: inline-block;
  color: #111111;
}

.projects-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.projects-scroller::-webkit-scrollbar {
  display: none;
}

.project-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.project-item {
  flex: 0 0 clamp(260px, 32vw, 380px);
}

.project-card {
  background: #171717;
  border: 1px solid #272727;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.project-card h3 {
  font-size: 1.1rem;
  color: #ffffff;
}

.project-card p {
  color: #b8b8b8;
}

.project-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-item {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item i {
  margin-right: 0;
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.map-wrap {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.client-slider {
  overflow: hidden;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  padding: 1rem 0;
}

.client-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: clientsMove 22s linear infinite;
}

.client-logo {
  min-width: 220px;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  color: #111111;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.client-logo span {
  display: inline-block;
}

@keyframes clientsMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #181818 0%, #0f0f0f 100%);
  border-top: 1px solid var(--border-soft);
}

.footer-heading {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2f2f2;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #303030;
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: #fff;
  background: #fff;
  color: #111;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.3);
}
.client-logo picture {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  padding: 0.5rem;
}

.client-logo img {
  width: 100%;
  max-width: 180px;
  max-height: 80px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.15);
  opacity: 0.95;
}
.contact-link {
  text-decoration: none;
  color: inherit;
}

.contact-link .contact-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover .contact-item,
.contact-link:focus-visible .contact-item {
  transform: translateY(-2px);
  border-color: #bdbdbd;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}
.quote-form {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 1rem;
}

.quote-form .form-control,
.quote-form .form-select {
  border-color: #d6d6d6;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  box-shadow: none;
  border-color: #111111;
}

.quote-summary {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 1rem;
  position: sticky;
  top: 96px;
}

.quote-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed #e2e2e2;
}

.quote-breakdown li:last-child {
  border-bottom: 0;
}

.quote-total-wrap {
  background: #111111;
  color: #ffffff;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

@media (max-width: 991.98px) {
  .quote-summary {
    position: static;
  }
}
.form-section-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 1rem;
}

.quote-map {
  width: 100%;
  height: 280px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
}

.location-help {
  font-size: 0.85rem;
  color: #5f5f5f;
  margin-top: 0.5rem;
}

#otherFeatures {
  min-height: 126px;
}

.projects-hero {
  background: radial-gradient(circle at 10% 20%, #1c1c1c 0%, #0f0f0f 52%, #0a0a0a 100%);
  color: #ffffff;
  padding: 4rem 0 3rem;
}

.projects-hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .projects-hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }
}

.projects-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #bdbdbd;
  margin-bottom: 0.75rem;
}

.projects-title {
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin-bottom: 1rem;
}

.projects-subtitle {
  color: #cfcfcf;
  max-width: 36rem;
}

.projects-hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e2e2e2;
  color: #111111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.projects-metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.projects-metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.projects-metric-label {
  font-size: 0.85rem;
  color: #d8d8d8;
}

.project-card-solid {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #111111;
}

.project-card-solid h3 {
  color: #111111;
}

.project-card-solid p {
  color: #4f4f4f;
}

.project-media {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.project-pill {
  font-size: 0.75rem;
  background: #111111;
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.project-location {
  color: #4a4a4a;
  font-size: 0.95rem;
}

.project-location i {
  margin-right: 0.35rem;
}

.project-summary {
  font-size: 0.92rem;
  color: #525252;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
  font-size: 0.82rem;
  color: #4f4f4f;
  margin-top: 0.85rem;
}

.project-meta i {
  margin-right: 0.35rem;
}

.empty-state {
  border: 1px dashed #cfcfcf;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: #ffffff;
}
