/* ===== Site Loader ===== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.site-loader.site-loader-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
.site-loader-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.75);
  animation: site-loader-logo-reveal 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes site-loader-logo-reveal {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.85);
  }
}
@media (max-width: 480px) {
  .site-loader-logo {
    width: 90px;
    height: 90px;
  }
}


html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
}
body p {
  font-family: "Inter", sans-serif !important;
}
body h2 {
  font-family: "Arial Black", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 700;
}

#mainNavbar {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 999997;
}
#mainNavbar.scrolled,
#mainNavbar.on-light {
  background-color: var(--dark);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
#mainNavbar .navbar-brand {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0;
  white-space: nowrap;
  transition: color 0.3s ease;
}
#mainNavbar .navbar-brand:hover {
  color: #ffc107;
}
.nav-logo {
  height: 70px;
  width: 70px;
  filter: contrast(120%);
  transition: transform 0.3s ease;
}
#mainNavbar.scrolled .nav-logo,
#mainNavbar.on-light .nav-logo {
  filter: none;
}
.navbar-brand:hover .nav-logo {
  transform: scale(1.05);
}
.navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 80px;
}
#mainNavbar .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
  border-radius: 5px;
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: #ffc107;
}
#mainNavbar.scrolled .nav-link,
#mainNavbar.on-light .nav-link {
  color:#ffffff;
}
#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active,
#mainNavbar.on-light .nav-link:hover,
#mainNavbar.on-light .nav-link.active {
  color: rgba(255, 193, 7, 0.9);
}
#mainNavbar .btn-contact {
  background-color: #ffc107;
  color: #0a0a0a;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  transition:
    background-color 0.3s ease-out,
    color 0.3s ease-out;
}
#mainNavbar .btn-contact:hover {
  background-color: #e6b300;
  color: #ffffff;
}
#mainNavbar .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 8px;
  border-radius: 4px;
}
#mainNavbar.scrolled .navbar-toggler,
#mainNavbar.on-light .navbar-toggler {
  border-color: #ffffff;
}
.custom-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
  margin: 4px 0;
}
#mainNavbar.scrolled .icon-bar,
#mainNavbar.on-light .icon-bar {
  background-color: #ffffff;
}
#mainNavbar .navbar-toggler-icon {
  background-image: none;
}
.custom-toggler.open .icon-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.custom-toggler.open .icon-bar:nth-child(2) {
  opacity: 0;
}
.custom-toggler.open .icon-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

:root {
  --hero-content-scroll: 100vh;
  --hero-video-only: 10vh;
}
.hero-section {
  position: relative;
  height: calc(200vh + var(--hero-video-only));
  color: white;
  text-align: center;
  z-index: 1;
}


.hero-sticky {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}


.hero-bg-video-mobile {
  display: none;
}


.hero-content-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  z-index: 2;
  pointer-events: none;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}
.hero-letter {
  display: inline-block;
  will-change: transform, opacity;
}
.hero-section .btn-primary {
  will-change: transform, opacity;
}
.hero-title .hero-subtitle {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  margin-bottom: 15px;
}
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
    line-height: 1.05;
  }

  .hero-title .hero-subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.6rem;
    line-height: 1.05;
    text-align: center;
  }

  .hero-title .hero-subtitle {
    font-size: 1.5rem;
  }
}
.hero-section .btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: black;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition:
    background-color 0.5s ease-out,
    transform 0.5s ease-out;
}
.hero-section .btn-primary:hover {
  background-color: #e6b300;
  border-color: #e6b300;
  color: #ffffff;
}

.about-us-section {
  background-color: #ffffff;
  color: #000000;
  padding: 0;
  margin: 0;
}
.about-capabilities {
  padding: 50px 0;
}
.about-heading {
  font-family: "Arial Black", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}
.about-tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
}

.about-slider-wrapper {
  height: 14vh;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.4s ease;
}

.dot-loader {
  display: flex;
  gap: 8px;
}

.dot-loader div {
  width: 12px;
  height: 12px;
  background-color: #ffc107;
  border-radius: 50%;
  animation: dot-bounce 1.4s infinite ease-in-out both;
}

.dot-loader div:nth-child(1) {
  animation-delay: -0.32s;
}
.dot-loader div:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes dot-bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.sound-control-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 15;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.sound-control-btn:hover {
  background: #ffc107;
  transform: scale(1.1);
}
.logo-slider-track {
  display: flex;
  width: fit-content;
  animation: scrollLogos 25s linear infinite;
}
.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
}
.logo-slide img {
  max-height: 40px;
  width: auto;
  filter: none;
  opacity: 1;
  transition: 0.5s;
}
.logo-slide-solista {
  color: gray;
  font-weight: bold;
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.image-stack-container {
  position: relative;
  height: 350px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.stack-card {
  position: absolute;
  width: 280px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: 3px solid #fff;
}

.stack-card:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 3;
}
.stack-card:nth-child(2) {
  top: 50px;
  left: 50px;
  z-index: 2;
  opacity: 0.8;
}
.stack-card:nth-child(3) {
  top: 100px;
  left: 100px;
  z-index: 1;
  opacity: 0.6;
}

.image-stack-container:hover .stack-card:nth-child(1) {
  transform: translate(-20px, -20px) rotate(-5deg);
}
.image-stack-container:hover .stack-card:nth-child(2) {
  transform: translate(10px, 10px) rotate(2deg);
  opacity: 1;
}
.image-stack-container:hover .stack-card:nth-child(3) {
  transform: translate(40px, 40px) rotate(5deg);
  opacity: 1;
}

.stack-card img {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.fs-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  place-items: center;
  align-content: center;
  overflow: hidden;
  pointer-events: auto !important;
  user-select: none;
}

.fs-modal-content {
  margin: 0 !important;
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  transition: opacity 0.2s ease-in-out;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto !important;
}

.close-fs {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .image-stack-container {
    height: 280px;
    max-width: 90%;
  }

  .stack-card {
    width: 220px;
    height: 160px;
    border-width: 2px;
  }
}


@keyframes zoomIn {
  from {
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}


.map-wrapper {
    
  position: relative;
  margin-right: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.map-wrapper:hover .map-overlay {
  opacity: 1;
}
.map-wrapper:hover .map-img {
  transform: scale(1.1);
}

@keyframes zoomIn {
  from {
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

.close-fs {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

#units {
  background-color: #0a0a0a;
  color: #e8e8e8;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.section-header {
  text-align: center;
  padding: 80px 24px 0;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f5c518;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: #ffffff;
  line-height: 1;
}
.section-header p {
  color: #888888;
  font-size: 15px;
  margin-top: 12px;
}
.gold-line {
  width: 48px;
  height: 3px;
  background: #f5c518;
  margin: 18px auto 0;
}
:root {
  --gold: #b08d57;
  --dark: #1a1a1a;
  --white: #ffffff;
  --grey: #f4f4f4;
}
.btn-gold {
  display: inline-block;
  background: #f5c518;
  color: #0a0a0a;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  background: #d4a800;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #f5c518;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid #f5c518;
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(245, 197, 24, 0.1);
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.app-container {
  max-width: 1500px;
  margin: 40px auto;
  padding: 20px;
}
#units-home {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
  padding: 80px 48px;
  max-width: 1500px;
  margin: 0 auto;
}
.unit-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.unit-type-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.unit-type-card:hover {
  border-color: #f5c518;
  transform: translateY(-4px);
}
.card-top {
  padding: 40px 36px 32px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.card-type-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f5c518;
  margin-bottom: 10px;
}
.card-title {
  font-size: 40px;
  color: #ffffff;
  line-height: 1;
}
.card-desc {
  color: #888888;
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7;
}
.card-stats {
  display: flex;
  gap: 32px;
  padding: 28px 36px;
}
.active {
  color: #ffc107;
}
.stat-num {
  font-size: 32px;
  color: #f5c518;
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  color: #888888;
  letter-spacing: 1px;
  margin-top: 2px;
}
.card-arrow {
  position: absolute;
  top: 40px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5c518;
  font-size: 16px;
  transition: background 0.2s;
}
.unit-type-card:hover .card-arrow {
  background: #f5c518;
  color: #0a0a0a;
}

.bg-light-dark {
  background-color: #f8f9fa;
}

.text-dark-blue {
  color: #000000;
}

.text-accent {
  color: #ffc107;
}

.text-secondary-dark {
  color: #5a6470;
}

.service-card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
  color: #e6642e;
}

.service-card .card-title {
  color: #000000;
  margin-bottom: 15px;
}

.plan-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.plan-card:hover {
  border-color: #ffc107;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 5px;
}

.plan-features li {
  padding: 8px 0;
  font-size: 1rem;
  color: #343a40;
}

.bg-white-fade {
  background-color: #fcfcfc;
}

.portfolio-item-lg {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.portfolio-item-lg img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item-lg:hover img {
  transform: scale(1.05);
}

.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity 0.5s;
}

.info-overlay h4 {
  margin: 0;
  font-weight: 700;
}

.bg-dark-contact {
  background-color: #f8f9fb;
}

.form-control-dark {
  background-color: #ffffff;
  border: 1px solid #dde2e8;
  color: #111111;
  border-radius: 8px;
  padding: 10px 15px;
}

.form-control-dark:focus {
  background-color: #ffffff;
  border-color: #ffc107;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
  color: #111111;
}

.contact-info li {
  font-size: 1.1rem;
}

.social-links a {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: #0a0a0a;
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.2rem;
  transition:
    background-color 0.3s,
    transform 0.3s;
}

.social-links a:hover {
  background-color: #ffc107;
  color: #000000;
  transform: translateY(-3px);
}

.bg-dark-footer {
  background-color: #000000;
}
.text-light-muted {
  color: rgba(0, 0, 0, 0.6);
}


.site-footer {
  background-color: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand img {
  height: 65px;
  width: 65px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #ffc107;
}
.footer-contact li {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  list-style: none;
}
.footer-contact li i {
  color: #ffc107;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
  margin-right: 8px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}
.footer-social a:hover {
  background: #ffc107;
  color: #0a0a0a;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

@media (max-width: 991.98px) {
  .hero-bg-video-desktop {
    display: none;
  }
  .hero-bg-video-mobile {
    display: block;
  }
  .hero-section h1 {
    font-size: 3rem;
  }
  .unit-modal-content {
    width: 90%;
    max-height: 80vh;
  }
  .about-capabilities {
    padding-bottom: 20px;
  }

  .close-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 45px;
    background: none;
    border: none;
    cursor: pointer;
  }
}

@media (max-width: 767.98px) {
  .unit-visualizer {
    height: 350px;
  }
  .stat-item {
    margin-bottom: 20px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .plan-card {
    min-height: auto;
  }

  .close-btn {
    position: fixed;
    top: 2px;
    right: 2px;
    color: #ffffff;
    font-size: 45px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .card-title {
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
}
}

@media (max-width: 576px) {
  .unit-visualizer {
    height: 300px;
  }
  .unit-modal-content {
    width: 95%;
    padding: 20px;
  }
  .modal-content-details p {
    font-size: 1rem;
  }
  .close-modal-btn {
    right: 15px;
  }
  .card-title {
  font-size: 25px;
  color: #ffffff;
  line-height: 1;
}
}

@media (max-width: 767px) {
  .about-us-section h2 {
    text-align: center;
  }
  .about-us-section {
    padding: 7px;
  }

  .portfolio-item-lg img {
    object-fit: fill;
  }
}

.eco-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.eco-card:hover {
  transform: translateY(-10px);
  border-color: #ffc107;
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.1);
}

.eco-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #fdf7e7;
  color: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.eco-card h4 {
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.eco-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.hero-section {
  width: 100vw;
}

:root {
  --gold: #f1b400;
  --dark: #1a1a1a;
  --white: #ffffff;
}

#chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  z-index: 9999;
}

#chat-launcher {
  background: var(--gold);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

#chat-window {
  width: 350px;
  height: 400px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 80px;
  right: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
@media (max-width: 750px) {
  #chat-window {
    width: 300px;
    height: 350px;
  }
}

.hidden {
  display: none !important;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

#chat-header {
  background: var(--dark);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lang-btn {
  background: var(--gold);
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 85%;
  line-height: 1.4;
}

.bot {
  background: white;
  align-self: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.user {
  background: var(--gold);
  color: white;
  align-self: flex-end;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
}

.chat-btn {
  border: 1px solid var(--gold);
  background: white;
  padding: 8px;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  transition: 0.2s;
}

.chat-btn:hover {
  background: var(--gold);
  color: white;
}

.maps-link {
  display: inline-block;
  margin-top: 8px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: bold;
}

.rtl {
  direction: rtl;
}

#mall .video-wrapper {
  max-width: 100%;
}

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }
  nav ul {
    display: none;
  }
  #units-home {
    padding: 60px 20px;
  }
  .unit-type-grid {
    grid-template-columns: 1fr;
  }
  .units-container {
    padding: 40px 20px 0;
  }
  .summary-strip {
    padding: 32px 20px;
  }
  .units-page-hero {
    padding: 120px 20px 48px;
  }
}

@media (max-width: 767px) {
  
  .location-box img {
    object-fit: fill;}
}