/* GREENBARA — AOS, scroll zoom & micro-interactions */

:root {
  --greenbara-logo-bg: #0B281E;
  --greenbara-accent-lime: #76B843;
}

/* Header styled for dark logo */
.header-style-1 .navigation {
  background-color: var(--greenbara-logo-bg);
  border-bottom: 2px solid var(--greenbara-accent-lime);
}

.header-style-1 .navigation .navbar-nav > li > a,
.header-style-1 .navigation .contact .call p {
  color: rgba(255, 255, 255, 0.85);
}

.header-style-1 .navigation .navbar-nav > li > a:hover,
.header-style-1 .navigation .navbar-nav > li > a:focus {
  color: var(--greenbara-accent-lime);
}

.header-style-1 .navigation .contact .call h5 {
  color: #fff;
}

.header-style-1 .navigation .navbar-brand img {
  max-height: 52px;
  width: auto;
}

.header-style-1 .navigation .icon-bar {
  background-color: #fff;
}

/* Scroll zoom image containers */
.zoom-scroll-wrap {
  overflow: hidden;
  border-radius: 4px;
}

.zoom-scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.zoom-scroll-wrap:hover .zoom-scroll-img,
.zoom-scroll-wrap.is-visible .zoom-scroll-img {
  transform: scale(1.08);
}

/* Image slider zoom cards */
.project-zoom-card {
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.project-zoom-card img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.8s ease;
  width: 100%;
  display: block;
}

.contact-info-inline p {
  margin-bottom: 8px;
  color: #595959;
}

.contact-info-inline i {
  color: var(--greenbara-accent-lime);
  margin-right: 8px;
}

.project-zoom-card {
  margin-bottom: 24px;
  min-height: 180px;
}

.project-zoom-card:hover img {
  transform: scale(1.12);
}

.project-zoom-card .overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(11, 40, 30, 0.92));
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.project-zoom-card:hover .overlay-caption {
  transform: translateY(0);
}

/* Parallax scroll sections */
.parallax-scroll-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* AOS custom easing */
[data-aos] {
  pointer-events: auto;
}

.service-grids .grid,
.why-choose-grids .grid {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-grids .grid:hover,
.why-choose-grids .grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.15);
}

/* Hero Ken Burns zoom effect */
.hero-slider .slide-bg-image {
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-slider .slide-inner {
  overflow: hidden;
}

/* Staggered counter pulse on scroll */
.fun-fact-section .grid .info {
  transition: transform 0.4s ease;
}

.fun-fact-section .grid.aos-animate .info {
  animation: pulseIn 0.6s ease forwards;
}

@keyframes pulseIn {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Footer logo sizing */
.site-footer .logo img {
  max-height: 60px;
  width: auto;
}

/* Contact bar highlight */
.header-style-1 .navigation .contact .call i {
  color: var(--greenbara-accent-lime);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

@media (max-width: 991px) {
  .parallax-scroll-section {
    background-attachment: scroll;
  }

  .header-style-1 .navigation .navbar-brand img {
    max-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider .slide-bg-image,
  .zoom-scroll-img,
  [data-aos] {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
