/* ===================================
   KEEPLER - Enhanced Styles
   Color Palette:
   - Light: #EFFFFB
   - Green: #50D890
   - Blue: #4F98CA
   - Dark: #272727
   =================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  --color-light: #effffb;
  --color-green: #50d890;
  --color-blue: #4f98ca;
  --color-dark: #272727;
  --color-green-hover: #45c080;
  --color-blue-hover: #4088ba;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* For fixed navbar */
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  margin-top: 0;
}

/* ===== CUSTOM BUTTONS (Non-conflicting with Bootstrap) ===== */
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-custom-large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn-custom-primary {
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  color: var(--color-light);
}

.btn-custom-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(80, 216, 144, 0.4);
  color: var(--color-light);
  text-decoration: none;
}

.btn-custom-secondary {
  background-color: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-custom-secondary:hover {
  background-color: var(--color-dark);
  color: var(--color-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 39, 39, 0.3);
  text-decoration: none;
}

.btn-custom-outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-green);
}

.btn-custom-outline:hover {
  background: var(--color-green);
  color: var(--color-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(80, 216, 144, 0.3);
  text-decoration: none;
}

.btn-custom-light {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.btn-custom-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.btn-custom-outline-light {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}

.btn-custom-outline-light:hover {
  background: var(--color-light);
  color: var(--color-dark);
  text-decoration: none;
}

/* Navbar button style */
.btn-nav {
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  color: white !important;
  border-radius: 25px;
  padding: 0.5rem 1.5rem !important;
  border: none;
  transition: all var(--transition-normal);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(80, 216, 144, 0.4);
  color: white !important;
}

/* ===== HERO SECTION (ENHANCED) ===== */
.hero-enhanced {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  width: 200%;
  height: 200%;
  opacity: 0.3;
}

.wave-1 {
  background: radial-gradient(
    circle at 20% 50%,
    rgba(80, 216, 144, 0.15),
    transparent 50%
  );
  animation: wave-float 20s ease-in-out infinite;
}

.wave-2 {
  background: radial-gradient(
    circle at 80% 70%,
    rgba(79, 152, 202, 0.15),
    transparent 50%
  );
  animation: wave-float 25s ease-in-out infinite reverse;
}

.wave-3 {
  background: radial-gradient(
    circle at 50% 30%,
    rgba(80, 216, 144, 0.1),
    transparent 50%
  );
  animation: wave-float 30s ease-in-out infinite;
}

@keyframes wave-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -50px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(80, 216, 144, 0.1);
  color: var(--color-green);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(80, 216, 144, 0.2);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.title-line {
  display: block;
}

.highlight-text {
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-dark);
  opacity: 0.8;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 540px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 60px;
  flex: 1;
  min-width: 200px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(39, 39, 39, 0.1);
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-dark);
  opacity: 0.7;
  font-weight: 500;
}

/* Background Slider */
.background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  filter: brightness(0.8) contrast(1.1);
}

.background-slider img.active {
  opacity: 1;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
  z-index: 5;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-dark);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-dark);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-scroll 2s infinite;
}

@keyframes wheel-scroll {
  0%, 20% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

.arrow-down {
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
  transform: rotate(-45deg);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-enhanced {
    min-height: 50vh !important;
    max-height: 50vh !important;
    height: 50vh !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .background-slider {
    height: 50vh !important;
  }

  .background-slider img {
    height: 50vh !important;
  }

  .slider-dots {
    bottom: 15px !important;
    padding: 6px 12px;
    gap: 6px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .scroll-indicator {
    display: none !important;
  }

  .hero-wave {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .hero-enhanced {
    min-height: 45vh !important;
    max-height: 45vh !important;
    height: 45vh !important;
  }

  .hero-background,
  .background-slider {
    height: 45vh !important;
    max-height: 45vh !important;
    min-height: 45vh !important;
  }

  .background-slider img {
    height: 45vh !important;
    max-height: 45vh !important;
    min-height: 45vh !important;
  }

  .slider-dots {
    bottom: 12px !important;
    padding: 5px 10px;
    gap: 5px;
  }

  .dot {
    width: 5px;
    height: 5px;
  }

  .btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    min-height: 50px;
  }
}

@media (max-width: 400px) {
  .hero-enhanced {
    min-height: 40vh !important;
    max-height: 40vh !important;
    height: 40vh !important;
  }

  .hero-background,
  .background-slider {
    height: 40vh !important;
    max-height: 40vh !important;
    min-height: 40vh !important;
  }

  .background-slider img {
    height: 40vh !important;
    max-height: 40vh !important;
    min-height: 40vh !important;
  }

  .slider-dots {
    bottom: 10px !important;
  }
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(39, 39, 39, 0.1);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-dark);
  opacity: 0.7;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.floating-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  will-change: auto;
}

.background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 0;
  overflow: hidden;
}

.background-slider::before {
  background: none;
}

.background-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.8) contrast(1.1);
}

.background-slider img.active {
  opacity: 1;
  transform: scale(1.02);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.floating-card-3d {
  position: absolute;
  background: var(--color-light);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(39, 39, 39, 0.15);
  transition: transform var(--transition-normal);
}

@media (max-width: 768px) {
  .floating-card-3d {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    gap: 1rem;
  }
}

.navbar-collapse::before {
  content: none !important;
  display: none !important;
  height: 0 !important;
  margin-top: 0 !important;
}

.floating-card-3d:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 80px rgba(39, 39, 39, 0.2);
}

.card-arch {
  width: 200px;
  top: 50px;
  left: 0;
  border: 2px solid rgba(80, 216, 144, 0.2);
}

.card-struct {
  width: 220px;
  top: 200px;
  right: 80px;
  border: 2px solid rgba(79, 152, 202, 0.2);
}

.card-mep {
  width: 180px;
  bottom: 100px;
  left: 60px;
  border: 2px solid rgba(80, 216, 144, 0.2);
}

.card-estimation {
  width: 190px;
  bottom: 50px;
  right: 0;
  border: 2px solid rgba(79, 152, 202, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    rgba(80, 216, 144, 0.1),
    rgba(79, 152, 202, 0.1)
  );
}

.card-arch .card-icon {
  color: var(--color-green);
}
.card-struct .card-icon {
  color: var(--color-blue);
}
.card-mep .card-icon {
  color: var(--color-green);
}
.card-estimation .card-icon {
  color: var(--color-blue);
}

.floating-card-3d h4 {
  font-size: 1.25rem;
  color: var(--color-dark);
  margin: 0;
}

/* 3D BIM Cube */
.bim-cube-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 50%;
  right: 0;
  transform-style: preserve-3d;
  animation: rotate-cube 20s linear infinite;
}

@keyframes rotate-cube {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(80, 216, 144, 0.3);
  background: rgba(80, 216, 144, 0.05);
  backdrop-filter: blur(10px);
}

.cube-front {
  transform: translateZ(75px);
}
.cube-back {
  transform: rotateY(180deg) translateZ(75px);
}
.cube-right {
  transform: rotateY(90deg) translateZ(75px);
}
.cube-left {
  transform: rotateY(-90deg) translateZ(75px);
}
.cube-top {
  transform: rotateX(90deg) translateZ(75px);
}
.cube-bottom {
  transform: rotateX(-90deg) translateZ(75px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-dark);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-dark);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-scroll 2s infinite;
}

@keyframes wheel-scroll {
  0%,
  20% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

.arrow-down {
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
  transform: rotate(-45deg);
}

/* ===== CLIENTS CAROUSEL ===== */
.clients-carousel {
  padding: 4rem 0;
  background: rgba(79, 152, 202, 0.05);
  overflow: hidden;
  margin-top: 8rem !important;
  position: relative;
  z-index: 2;
  width: 100%;
}

.clients-intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-track {
  display: flex;
  gap: 4rem;
  animation: scroll-clients 30s linear infinite;
  width: fit-content;
}

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.client-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(80, 216, 144, 0.2);
  overflow: hidden;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.client-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

/* Clients Carousel Mobile Responsive */
@media (max-width: 768px) {
  .services-overview {
    margin-bottom: 0 !important;
  }

  .trusted-clients {
    margin-top: 300px;
  }

  .clients-carousel {
    margin: 0 !important;
    margin-top: 10rem !important;
    padding: 3rem 0 !important;
    position: relative;
    z-index: 1;
    width: 100%;
    background: rgba(79, 152, 202, 0.05);
  }

  .clients-carousel[data-aos="fade-up"] {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  .stats-section {
    margin-top: 0 !important;
    padding-top: 3rem !important;
  }

  .clients-carousel .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }

  .clients-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0;
  }

  .clients-slider {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .clients-track {
    gap: 2.5rem;
    animation: scrollMobile 35s linear infinite;
    padding: 1rem 0;
  }

  .client-item {
    width: 120px;
    flex-shrink: 0;
  }

  .client-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .client-logo img {
    padding: 5px;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .client-name {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
  }

  @keyframes scrollMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 12 - 2.5rem * 12));
    }
  }
}

@media (max-width: 576px) {
  .clients-carousel {
    margin-top: 2rem !important;
    padding: 2.5rem 0 !important;
  }

  .clients-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .clients-track {
    gap: 2rem;
    animation: scrollMobile 30s linear infinite;
  }

  .client-item {
    width: 100px;
  }

  .client-logo {
    width: 60px;
    height: 60px;
    padding: 0.4rem;
  }

  .client-name {
    font-size: 0.75rem;
  }

  @keyframes scrollMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100px * 12 - 2rem * 12));
    }
  }
}

@media (max-width: 400px) {
  .clients-carousel {
    margin-top: 1.5rem !important;
    padding: 2rem 0 !important;
  }

  .clients-track {
    gap: 1.5rem;
    animation-duration: 25s;
  }

  .client-item {
    width: 90px;
  }

  .client-logo {
    width: 55px;
    height: 55px;
  }

  .client-name {
    font-size: 0.7rem;
  }

  @keyframes scrollMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-90px * 12 - 1.5rem * 12));
    }
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 6rem 0;
  background: var(--color-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.stat-card {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(39, 39, 39, 0.08);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-green), var(--color-blue));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(39, 39, 39, 0.1);
  border-color: transparent;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.icon-green {
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
}

.icon-blue {
  background: rgba(79, 152, 202, 0.15);
  color: var(--color-blue);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(10deg);
}

.stat-number {
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 1rem 0;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--color-dark);
  opacity: 0.7;
  line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(80, 216, 144, 0.1);
  color: var(--color-green);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(80, 216, 144, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
}

.section-subtitle-large {
  font-size: 1.25rem;
  color: var(--color-dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 6rem 0;
  background: linear-gradient(
    to bottom,
    var(--color-light),
    rgba(79, 152, 202, 0.05)
  );
}

.service-card-enhanced {
  position: relative;
  height: 350px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  background: #fff;
}

.service-card-front {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.service-card-back {
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  color: #fff;
  z-index: 1;
}

/* HOVER FLIP EFFECT */
.service-card-enhanced:hover .service-card-front {
  opacity: 0;
  transform: translateY(-20px);
}

.service-card-enhanced:hover .service-card-back {
  opacity: 1;
  transform: translateY(0);
}

.service-card-back h3 {
  color: #fff;
}

.service-card-back .service-features {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.service-card-back .service-features li {
  margin: 5px 0;
}

.service-link {
  color: #fff;
  text-decoration: underline;
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.service-card-front {
  background: var(--color-light);
  border: 2px solid rgba(39, 39, 39, 0.1);
}

.service-card-back {
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  color: var(--color-light);
  transform: rotateY(180deg);
}

.service-icon-large {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
  color: var(--color-green);
  opacity: 0.8;
}

.service-card-front h3 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.service-card-front p {
  color: var(--color-dark);
  opacity: 0.7;
}

.service-card-back h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-light);
}

.service-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  width: 100%;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-link {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--color-light);
  transition: all var(--transition-normal);
  padding: 0.25rem 0;
}

.service-link:hover {
  padding-left: 10px;
  color: var(--color-light);
  text-decoration: none;
}

/* Service Images */
.service-visual-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stat Circle Fix */
.intro-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-circle {
  position: relative;
  margin-bottom: 1rem;
}

.stat-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
}

/* Mobile Responsive Service Cards */
.service-card-mobile {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.service-card-mobile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-large {
  text-align: center;
  color: #50d890;
}

.service-card-mobile h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #272727;
  margin-bottom: 1rem;
}

.service-card-mobile p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-features-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  background: #f8f9fa;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  border: 1px solid #e9ecef;
}

.service-link-mobile {
  color: #50d890;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.service-link-mobile:hover {
  color: #3daa70;
}

/* Service Cards Base Styles */
.service-card-enhanced {
  position: relative;
  height: 350px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* FRONT */
.service-card-front {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

/* BACK */
.service-card-back {
  opacity: 0;
  transform: translateY(20px);
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  color: #fff;
  z-index: 1;
}

/* Desktop Hover */
@media (min-width: 769px) {
  .service-card-enhanced:hover .service-card-front {
    opacity: 0;
    transform: translateY(-20px);
  }

  .service-card-enhanced:hover .service-card-back {
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
  }
}

/* Link Styles */
.service-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-top: 1rem;
  z-index: 100;
  position: relative;
}

.service-link:hover {
  padding-left: 1.5rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  .service-card-enhanced {
    height: 350px;
    margin-bottom: 1rem;
  }

  /* Default state - show front */
  .service-card-front {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
    pointer-events: auto;
  }

  .service-card-back {
    opacity: 0;
    transform: translateY(20px);
    z-index: 1;
    pointer-events: none;
  }

  /* Flipped state - show back */
  .service-card-enhanced.flipped .service-card-front {
    opacity: 0 !important;
    transform: translateY(-20px) !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .service-card-enhanced.flipped .service-card-back {
    opacity: 1 !important;
    transform: translateY(0) !important;
    z-index: 10 !important;
    pointer-events: auto !important;
  }

  /* Ensure link is clickable when card is flipped */
  .service-card-enhanced.flipped .service-link {
    pointer-events: auto !important;
    z-index: 100 !important;
    cursor: pointer !important;
  }

  /* Disable hover effects on mobile */
  .service-card-enhanced:hover .service-card-front {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card-enhanced:hover .service-card-back {
    opacity: 0;
    transform: translateY(20px);
  }

  /* Override hover when flipped */
  .service-card-enhanced.flipped:hover .service-card-front {
    opacity: 0 !important;
    transform: translateY(-20px) !important;
  }

  .service-card-enhanced.flipped:hover .service-card-back {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 576px) {
  .service-card-enhanced {
    height: 280px !important;
  }

  .service-card-front,
  .service-card-back {
    padding: 1.25rem 0.75rem;
  }

  .service-icon-large {
    width: 50px !important;
    height: 50px !important;
  }

  .service-icon-large svg {
    width: 50px;
    height: 50px;
  }

  .service-card-front h3,
  .service-card-back h3 {
    font-size: 1.2rem;
  }

  .service-features li {
    font-size: 0.8rem;
  }
}

/* Keep desktop hover effects */
@media (min-width: 769px) {
  .service-card-enhanced:hover .service-card-front {
    opacity: 0;
    transform: translateY(-20px);
  }

  .service-card-enhanced:hover .service-card-back {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURED PROJECTS ===== */
.featured-projects {
  padding: 6rem 0;
  background: var(--color-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.project-card {
  background: var(--color-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(39, 39, 39, 0.08);
  transition: all var(--transition-normal);
  border: 2px solid rgba(39, 39, 39, 0.05);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(39, 39, 39, 0.15);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-slow);
}

.project-card:hover .project-placeholder {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 39, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  background: var(--color-light);
  color: var(--color-dark);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.project-card:hover .project-link {
  transform: translateY(0);
}

.project-info {
  padding: 2rem;
}

.project-category {
  display: inline-block;
  background: rgba(80, 216, 144, 0.1);
  color: var(--color-green);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.project-info h3 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.project-info p {
  color: var(--color-dark);
  opacity: 0.7;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  z-index: 0;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.1) 35px,
    rgba(255, 255, 255, 0.1) 70px
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-light);
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-light);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-green);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--color-green);
}

.footer-section p {
  color: var(--color-light);
  opacity: 0.8;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0%;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--color-light);
  text-decoration: none;
  opacity: 0.8;
  transition: all var(--transition-normal);
  display: inline-block;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--color-green);
  transform: translateX(5px);
  text-decoration: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-light);
  opacity: 0.8;
}

.footer-contact .bi {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(239, 255, 251, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-light);
  opacity: 0.6;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  color: var(--color-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(39, 39, 39, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(80, 216, 144, 0.4);
}

/* ===== PAGE HEADER ===== */
.page-header {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(80, 216, 144, 0.1),
    rgba(79, 152, 202, 0.1)
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-badge {
  display: inline-block;
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(80, 216, 144, 0.3);
}

.page-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-dark);
  opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 968px) {
  .hero-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .section-title-large {
    font-size: 2.2rem;
  }

  .services-grid-enhanced,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-enhanced {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
    align-items: center;
  }

  .hero-content {
    order: 1;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .btn-custom {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-stats .stat-item {
    width: 100%;
    max-width: 250px;
  }

  .hero-visual {
    order: 2;
    height: 300px;
    margin: 2rem 0;
    position: relative;
  }

  .floating-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: auto !important;
    position: static !important;
    transform: none !important;
    padding: 1rem;
  }

  .floating-card-3d {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    padding: 2rem 1.5rem;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none !important;
    border-radius: 15px;
    text-align: center;
  }

  .floating-card-3d:hover {
    transform: none !important;
  }

  .bim-cube-1 {
    display: none !important;
  }

  .hero-wave {
    animation: none !important;
  }

  .hero-background {
    position: static !important;
  }

  .service-card-enhanced {
    height: auto;
    min-height: 300px;
  }

  .service-card-front,
  .service-card-back {
    padding: 2rem 1.5rem;
  }

  .clients-track {
    gap: 1rem;
  }

  .client-name {
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title-large {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto !important;
    text-align: center;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-sticky,
  .back-to-top {
    bottom: 20px;
  }

  .whatsapp-sticky span {
    display: none !important;
  }

  .whatsapp-sticky {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-sticky i {
    font-size: 1.8rem;
  }

  .back-to-top {
    right: 10px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .section-title-large {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .floating-card-3d {
    padding: 1rem;
  }

  .service-card-front,
  .service-card-back {
    padding: 1.5rem 1rem;
  }

  .client-name {
    font-size: 0.7rem;
  }

  .whatsapp-sticky {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .whatsapp-sticky i {
    font-size: 1.2rem;
  }
}

.back-to-top {
  right: 10px;
  width: 45px;
  height: 45px;
}

/* PAGE HEADER*/
.page-header {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(80, 216, 144, 0.1),
    rgba(79, 152, 202, 0.1)
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-badge {
  display: inline-block;
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(80, 216, 144, 0.3);
}

.page-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-dark);
  opacity: 0.7;
}

/* ===== ABOUT PAGE ===== */
.company-overview {
  padding: 6rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.overview-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.value-proposition {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.stats-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
}

.highlight-card {
  background: var(--color-light);
  padding: 1.25rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(39, 39, 39, 0.08);
}

.highlight-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.mission-vision {
  padding: 6rem 0;
  background: rgba(79, 152, 202, 0.05);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.mission-card {
  background: var(--color-light);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.card-icon-large {
  margin: 0 auto 2rem;
  color: var(--color-green);
}

.mission-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* About Page Image Mobile Responsive */
@media (max-width: 768px) {
  .overview-visual img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Team Organogram */
.team-section {
  padding: 6rem 0;
}

.organogram {
  max-width: 1000px;
  margin: 0 auto;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.org-card {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(39, 39, 39, 0.1);
  transition: all var(--transition-normal);
}

.org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(39, 39, 39, 0.15);
}

.director-card {
  border: 3px solid rgba(80, 216, 144, 0.5);
}

.coordinator-card {
  border: 2px solid rgba(79, 152, 202, 0.5);
}

.manager-card {
  border: 2px solid rgba(80, 216, 144, 0.5);
}

.mep-card {
  border: 2px solid rgba(79, 152, 202, 0.5);
}

.org-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.org-position {
  font-size: 0.9rem;
  opacity: 0.7;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 200px;
  text-align: center;
}

.member-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.team-member p {
  font-size: 0.9rem;
  font-weight: 500;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  background: rgba(79, 152, 202, 0.05);
  border-radius: 10px;
}

.member-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.team-member p {
  font-size: 0.9rem;
  font-weight: 500;
}

.why-choose {
  padding: 6rem 0;
  background: var(--color-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  padding: 2.5rem;
  background: rgba(79, 152, 202, 0.05);
  border-radius: 15px;
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: var(--color-light);
  box-shadow: 0 15px 40px rgba(39, 39, 39, 0.1);
}

.benefit-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* SERVICES PAGE */
.services-intro {
  padding: 6rem 0;
}

/* Service section scroll offset */
#bim-services,
#4d-5d-planning,
#estimation-costing,
#architecture-interior {
  padding-top: 120px;
  margin-top: -120px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-stat-item {
  text-align: center;
}

.stat-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
}

.stat-percent {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green);
}

.services-detailed {
  padding-top: 90px;
}

.service-detail-card {
  margin-bottom: 6rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-card.reverse .service-detail-grid {
  direction: rtl;
}

.service-detail-card.reverse .service-detail-content {
  direction: ltr;
}

.service-detail-visual {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  object-fit: cover;
}

.service-number {
  font-size: 5rem;
  font-weight: 800;
  opacity: 0.1;
  line-height: 1;
}

.service-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item svg {
  flex-shrink: 0;
  color: var(--color-green);
}

.feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.service-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.85rem;
  opacity: 0.7;
}

.service-process {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-step {
  background: rgba(80, 216, 144, 0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.step-number {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  background: var(--color-green);
  color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--color-green);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.deliverable-card {
  background: rgba(79, 152, 202, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
}

.deliverable-card h4 {
  margin-bottom: 1rem;
  color: var(--color-blue);
}

.deliverable-card ul {
  list-style: none;
  padding: 0;
}

.deliverable-card li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.deliverable-card li::before {
  content: "• ";
  color: var(--color-green);
  font-weight: bold;
}

.dimension-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dimension-card {
  background: rgba(79, 152, 202, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.dimension-icon {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.compact-list {
  list-style: none;
  padding: 0;
}

.compact-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.compact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
}

.transformation-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-box {
  background: rgba(80, 216, 144, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.benefit-box svg {
  color: var(--color-green);
  margin-bottom: 1rem;
}

.benefit-box h4 {
  margin-bottom: 0.75rem;
}

.benefit-box p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.service-comparison {
  padding: 6rem 0;
  background: rgba(79, 152, 202, 0.05);
}

.comparison-table {
  background: var(--color-light);
  border-radius: 20px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 0;
}

.comparison-cell {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(39, 39, 39, 0.08);
}

.comparison-row:last-child .comparison-cell {
  border-bottom: none;
}

.header-row {
  background: rgba(79, 152, 202, 0.1);
  font-weight: 700;
}

.comparison-cell.highlight {
  background: rgba(80, 216, 144, 0.05);
  font-weight: 600;
  color: var(--color-green);
}

/* Service Visual Carousel */
.service-detail-visual {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-visual-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.carousel-slide:hover .carousel-slide-content {
  transform: translateY(0);
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: none;
  gap: 10px;
  z-index: 10;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: white;
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Fallback for single image */
.service-visual-placeholder {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.service-visual-placeholder svg {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .service-detail-card.reverse .service-detail-grid {
    direction: ltr !important;
  }

  .service-detail-visual {
    order: 1;
    height: 250px;
  }

  .service-detail-content {
    order: 2;
    direction: ltr !important;
  }

  .service-visual-carousel,
  .service-visual-placeholder {
    height: 250px;
  }

  .carousel-controls {
    bottom: 15px;
    right: 15px;
  }

  .carousel-indicators {
    bottom: 15px;
    left: 15px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-slide-content {
    padding: 1.5rem;
  }

  .dimension-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .service-metrics {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .service-features-list {
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
    border-radius: 8px;
  }
}

/* Animation for carousel */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-slide.active {
  animation: slideIn 0.5s ease-out;
}

/* ===== PROJECTS PAGE ===== */
.project-filters {
  padding: 3rem 0;
  background: rgba(79, 152, 202, 0.05);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 2rem;
  background: var(--color-light);
  border: 2px solid rgba(39, 39, 39, 0.1);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-green);
  color: var(--color-light);
  border-color: var(--color-green);
  transform: translateY(-2px);
}

.projects-gallery {
  padding: 4rem 0;
}

.projects-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.project-card-full {
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.project-image-full {
  position: relative;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
}

.project-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}


.project-overlay-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(39, 39, 39, 0.95), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: all var(--transition-normal);
}

.project-card-full:hover .project-overlay-full {
  background: rgba(39, 39, 39, 0.85);
}

.project-details {
  color: var(--color-light);
}

.project-cat {
  display: inline-block;
  background: var(--color-green);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-details h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-light);
}

.project-details p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
}

.project-stats {
  padding: 4rem 0;
  background: rgba(79, 152, 202, 0.05);
}

.stats-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-simple h3 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-simple p {
  font-size: 1rem;
  opacity: 0.7;
}

/* ===== CLIENTS PAGE ===== */

.clients-showcase {
  background: #f8f9fa;
}

.client-card-large {
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.client-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.client-card-large:hover .client-logo {
  transform: scale(1.05);
}

/* Rest of your CSS remains the same */
.scroll-btn:hover {
  background: #1a2a6c !important;
  color: white !important;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-scroll-wrapper {
  animation: scroll 40s linear infinite;
}

.clients-scroll-wrapper:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .client-card-large {
    width: 250px;
  }
  .scroll-btn {
    width: 45px !important;
    height: 45px !important;
  }
}

.clients-showcase {
  padding: 6rem 0;
}

.clients-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.client-card-large {
  background: var(--color-light);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(39, 39, 39, 0.08);
  transition: all var(--transition-normal);
}

.client-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(39, 39, 39, 0.1);
  border-color: var(--color-green);
}

.client-logo-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.client-industry {
  font-size: 0.9rem;
  opacity: 0.6;
}

.testimonials-section {
  padding: 6rem 0;
  background: rgba(79, 152, 202, 0.05);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(39, 39, 39, 0.08);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--color-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ===== TECHNOLOGY PAGE ===== */
.lod-levels {
  padding: 6rem 0;
}

.lod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.lod-card {
  background: var(--color-light);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(39, 39, 39, 0.08);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.lod-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-green);
  box-shadow: 0 15px 40px rgba(39, 39, 39, 0.1);
}

.lod-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.lod-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.lod-card p {
  opacity: 0.7;
}

.lod-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.05;
}

.bim-workflow {
  padding: 6rem 0;
  background: rgba(79, 152, 202, 0.05);
}

.workflow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.workflow-step {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  min-width: 200px;
  flex: 1;
}

.workflow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-arrow {
  font-size: 2rem;
  color: var(--color-green);
}

.workflow-result {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  border-radius: 15px;
  color: var(--color-light);
}

.workflow-result h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tech-benefits {
  padding: 6rem 0;
}

.tech-benefit-card {
  background: rgba(79, 152, 202, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(80, 216, 144, 0.15);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  opacity: 0.8;
}

@media (max-width: 768px) {
}

.business-hours {
  padding: 2rem;
  background: rgba(79, 152, 202, 0.05);
  border-radius: 15px;
}

.business-hours h4 {
  margin-bottom: 1rem;
}

.contact-form-container {
  background: var(--color-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(39, 39, 39, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(39, 39, 39, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
}

.form-group textarea {
  resize: vertical;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.map-section {
  margin-top: 4rem;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

/* ===== RESPONSIVE FOR NEW PAGES ===== */
@media (max-width: 968px) {
  .page-title {
    font-size: 3rem;
  }

  .overview-grid,
  .intro-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card.reverse .service-detail-grid {
    direction: ltr;
  }

  .service-detail-content {
    direction: ltr;
  }

  .value-proposition,
  .mission-vision-grid,
  .benefits-grid,
  .deliverables-grid,
  .dimension-cards,
  .transformation-benefits {
    grid-template-columns: 1fr;
  }

  .stats-highlight {
    grid-template-columns: 1fr;
  }

  .stats-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid-full {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .workflow-diagram {
    flex-direction: column;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .stats-grid-simple {
    grid-template-columns: 1fr;
  }
}

.client-card {
  width: 100%;
  height: 180px !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.client-logo-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.client-logo {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover effects */
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.client-card:hover .client-logo {
  transform: scale(1.05);
}

.clients-slider {
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: scrollClients 28s linear infinite;
}

.client-logo {
  max-width: 160px;
  height: 80px;
  object-fit: contain;
}

.client-logo:hover {
  transform: scale(1.05);
}

.client-name {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .client-logo {
    max-width: 120px;
    height: 60px;
  }

  .client-name {
    font-size: 0.8rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--color-green);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.contact-card-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-card-link {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card-link:hover {
  color: var(--color-blue);
  transform: translateX(5px);
}

/* Business Hours Card */
.business-hours-card {
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  border-radius: 16px;
  padding: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(80, 216, 144, 0.3);
}

.business-hours-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.business-hours-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.business-hours-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.closed .time {
  color: #ffcccb;
  font-weight: 600;
}

.day {
  font-weight: 500;
}

.time {
  font-weight: 600;
}

@media (min-width: 992px) {
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .contact-card {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .business-hours-card {
    padding: 1.5rem;
  }
  
  .business-hours-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
/* Contact Info Section Layout */
.contact-info-section .row {
  align-items: stretch;
}

.contact-cards-vertical {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.contact-cards-vertical .contact-card {
  flex: 1;
  margin-bottom: 1rem;
}

.contact-cards-vertical .contact-card:last-child {
  margin-bottom: 0;
}
/* Unified Contact Card */
.unified-contact-card {
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  border-radius: 20px;
  padding: 3rem;
  color: white;
  box-shadow: 0 15px 40px rgba(80, 216, 144, 0.3);
}

.business-hours-section .business-hours-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.business-hours-section .business-hours-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.business-hours-section .business-hours-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.business-hours-section .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.business-hours-section .hours-row:last-child {
  border-bottom: none;
}

.business-hours-section .hours-row.closed .time {
  color: #ffcccb;
  font-weight: 600;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .unified-contact-card {
    padding: 2rem;
  }
  
  .business-hours-section .business-hours-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}