/* ============================================================
   THOUSAND HOMES — Premium CSS
   Colors: Green #066c3c | Deep Black #1A1A1A | Soft White #F5F5F5
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --green: #066c3c;
  --green-light: #0A8A4E;
  --black: #1A1A1A;
  --black-soft: #E8E8E8;
  --black-card: #FFFFFF;
  --gold: #066c3c;
  --gold-light: #0A8A4E;
  --white: #F5F5F5;
  --gray: #666666;
  --gray-light: #D1D1D1;
  --glass: rgba(255,255,255,0.6);
  --glass-hover: rgba(255,255,255,0.8);
  --glass-border: rgba(6,108,60,0.2);
  --glass-border-hover: rgba(6,108,60,0.4);
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-gold: 0 0 30px rgba(6,108,60,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', 'Outfit', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ---- LOADING SCREEN ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 900;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(6,108,60,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  animation: loadFill 2s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }



nav {
  position: fixed; top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0.8rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  width: 95%;
  max-width: 1400px;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: #FFFFFF;
  padding: 0.7rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  top: 1rem;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 900;
  color: var(--black); text-decoration: none;
  letter-spacing: 1px;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--gold); }
.navbar-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.navbar-logo-img:hover {
  transform: scale(1.08);
}
nav.scrolled .navbar-logo-img {
  height: 38px;
}
.about-nav {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.services-nav {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.projects-nav {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(26,26,26,0.7); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
/* Scroll-based active state for home page sections */
.nav-links a.scroll-active {
  background: var(--green);
  color: #FFFFFF !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(6, 108, 60, 0.3);
}
.nav-links a.scroll-active::after { display: none; }
.nav-cta {
  background: var(--gold) !important;
  color: #FFFFFF !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(6,108,60,0.3); }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: var(--transition);
}

/* ---- IMIGONGO PATTERN (SVG) ---- */
.imigongo-bg {
  position: relative;
  overflow: hidden;
}
.imigongo-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: none;
  pointer-events: none;
  z-index: 0;
}
.imigongo-border {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpolygon fill='%23C9A227' fill-opacity='0.15' points='20,0 40,20 20,40 0,20'/%3E%3Cpolygon fill='%230F7B6C' fill-opacity='0.1' points='20,5 35,20 20,35 5,20'/%3E%3C/g%3E%3C/svg%3E");
}
/* ---- HERO (HOME) ---- */
#hero {
  position: relative;
  width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-carousel {
  position: absolute; inset: 0;
  z-index: 0;
}
.carousel-item {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}
.carousel-item.active {
  opacity: 1;
  transform: scale(1);
  animation: slowZoom 8s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: transparent;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}
.hero-text.active { opacity: 1; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .accent { color: var(--gold); }
.hero-title .green { color: var(--green-light); }
.hero-title .text-smaller { font-size: 0.65em; }
.hero-title .text-smaller-innovative { font-size: 0.7em; }
.hero-title .white-text { color: var(--white); }
.hero-text {
  padding: 0 2rem;
}
.hero-text:nth-child(1) { 
  text-align: center;
  max-width: 900px;
  width: 100%;
}
.hero-text:nth-child(2) { 
  text-align: left; 
  max-width: none;
  width: 100%;
  padding-left: 5rem;
}
.hero-text:nth-child(2) .hero-title { 
  margin-bottom: 1.5rem;
  text-align: left;
}
.hero-text:nth-child(2) .hero-sub { 
  margin: 0 0 2.5rem 0;
  max-width: 600px;
  text-align: left;
}
.hero-text:nth-child(3) { 
  text-align: left;
  max-width: none;
  width: 100%;
  padding-left: 5rem;
}
.hero-text:nth-child(3) .hero-title { 
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.hero-text:nth-child(3) .hero-sub { 
  margin: 0 0 2.5rem 0;
  max-width: 600px;
  text-align: left;
  font-size: 1.05rem;
}
.hero-actions.left-align {
  justify-content: flex-start;
  padding-left: 5rem;
  width: 100%;
  margin-top: 2rem;
  position: relative;
}
.hero-sub {
  font-size: 1.15rem; font-weight: 300;
  color: rgba(26,26,26,0.75);
  max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(6,108,60,0.25); }
.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-glass:hover { background: var(--glass-hover); border-color: var(--gold); transform: translateY(-3px); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(26,26,26,0.5); font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-dot {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ---- SECTIONS ---- */
section { position: relative; padding: 7rem 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--gold); }
.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--gold);
  animation: typing 2.5s steps(22,end) forwards, blink 0.8s step-end infinite 2.5s;
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--gold); }
}
.section-sub {
  color: rgba(26,26,26,0.7);
  font-size: 1.05rem; max-width: 600px;
  margin-bottom: 3.5rem;
}
.section-header-center {
  text-align: center;
}
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- GLASS CARDS ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08) 0%, transparent 50%, rgba(116, 198, 157, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(45, 106, 79, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}
.glass-card:hover::before {
  opacity: 1;
}

/* ---- ABOUT SECTION (Home) ---- */
#about-home {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

#about-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(6, 108, 60, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content {
  padding-right: 2rem;
}

.about-header {
  margin-bottom: 2.5rem;
}

.about-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 108, 60, 0.1);
  border-radius: 50px;
}

.about-header .section-label i {
  font-size: 1rem;
}

.about-header .section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 0;
  color: var(--black);
  font-weight: 700;
}

.about-header .section-title span {
  color: var(--green);
  position: relative;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-description strong {
  color: var(--green);
  font-weight: 700;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(6, 108, 60, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(6, 108, 60, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 108, 60, 0.3);
}

.about-visual {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: var(--white);
  height: 400px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: slideshow-fade 15s ease-in-out infinite;
}

.slideshow-img:nth-child(1) {
  animation-delay: 0s;
}

.slideshow-img:nth-child(2) {
  animation-delay: 3s;
}

.slideshow-img:nth-child(3) {
  animation-delay: 6s;
}

.slideshow-img:nth-child(4) {
  animation-delay: 9s;
}

.slideshow-img:nth-child(5) {
  animation-delay: 12s;
}

@keyframes slideshow-fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(6, 108, 60, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(6, 108, 60, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(6, 108, 60, 0.12);
  border-color: rgba(6, 108, 60, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.3rem 0;
}

.feature-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .about-actions {
    justify-content: center;
  }

  .about-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  #about-home {
    padding: 4rem 5%;
  }

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

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

  .about-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1rem;
  }
}

/* ---- SERVICES ---- */
#services-home {
  background: var(--white);
  background-image: url('../assets/imigongo.svg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding: 6rem 2rem;
}
#services-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 0;
}
#services-home > * {
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.premium-service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  max-height: 420px;
}
.premium-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.3) 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: 20px;
}
.premium-service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(6, 108, 60, 0.15), transparent);
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 0;
}
.premium-service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(6, 108, 60, 0.4);
  box-shadow: 0 25px 60px rgba(6, 108, 60, 0.2), 0 0 40px rgba(6, 108, 60, 0.1);
}
.premium-service-card:hover::before {
  top: -25%;
  right: -25%;
}
.service-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(6, 108, 60, 0.08);
  z-index: 2;
}
.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(6, 108, 60, 0.25);
  position: relative;
  z-index: 2;
}
.premium-service-card:hover .service-card-icon {
  transform: scale(1.15) rotateY(10deg);
  box-shadow: 0 15px 45px rgba(6, 108, 60, 0.35);
}
.premium-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--black);
  position: relative;
  z-index: 2;
}
.premium-service-card p {
  color: rgba(26, 26, 26, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 2;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.8rem 0;
  position: relative;
  z-index: 2;
}
.service-features span {
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-features i {
  color: var(--gold);
  font-size: 0.8rem;
}
.service-cta-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
  border: none;
  border-radius: 50px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  margin-top: auto;
  box-shadow: 0 8px 20px rgba(6, 108, 60, 0.25);
}
.service-cta-premium:hover {
  transform: translateY(-3px);
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(6, 108, 60, 0.4);
}
.modern-service-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 2.8rem 2rem;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.modern-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.3) 100%);
  pointer-events: none;
  z-index: 0;
}
.modern-service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(6, 108, 60, 0.1), transparent);
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 1;
}
.modern-service-card:hover::before {
  top: -25%;
  right: -25%;
}
.modern-service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(6, 108, 60, 0.15), 0 0 40px rgba(6, 108, 60, 0.08);
}
.modern-service-card:hover::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.4) 100%);
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  background: rgba(6, 108, 60, 0.08);
  border: 1.5px solid rgba(6, 108, 60, 0.2);
  border-radius: 25px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  margin-top: auto;
}
.service-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  gap: 1rem;
  box-shadow: 0 8px 20px rgba(6, 108, 60, 0.25);
  transform: translateX(3px);
}

/* ---- PROJECTS ---- */
.projects {
  padding: 120px 60px;
  background: var(--white);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.project-status {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.project-location {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.project-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.project-card-large {
  grid-column: span 2;
}
.project-card-large .project-img { height: 420px; }

/* ---- STATS ---- */
#stats {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 100%), url('../assets/count_bg.png');
  background-size: auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5rem 5%;
  color: var(--white);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: 2rem;
}
.stat-item { padding: 1.5rem; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 900;
  color: var(--white); line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num span { color: var(--gold); }
.stat-label { color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ---- TESTIMONIALS ---- */
#testimonials { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
}
.stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-card blockquote {
  color: rgba(26,26,26,0.85);
  font-style: italic; line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold);
}
.author-info { font-size: 0.85rem; }
.author-info strong { display: block; color: var(--black); }
.author-info span { color: var(--gray); }

/* ---- CTA ---- */
#cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 108, 60, 0.85) 0%, rgba(6, 108, 60, 0.7) 100%),
    url('../assets/back_image.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 5% 6rem;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(6, 108, 60, 0.08), rgba(0, 0, 0, 0.4)),
    radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 70% 30%, rgba(6, 108, 60, 0.08) 0%, transparent 70%);
  backdrop-filter: blur(0.5px);
}

.cta-overlay::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(6, 108, 60, 0.1), rgba(212, 175, 55, 0.08));
  border-radius: 50%;
  filter: blur(40px);
  animation: float1 15s ease-in-out infinite;
}

.cta-overlay::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(6, 108, 60, 0.1));
  border-radius: 50%;
  filter: blur(30px);
  animation: float2 18s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-15px) translateY(-25px) rotate(360deg);
    opacity: 0.7;
  }
}

/* Geometric Shapes */
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-shape:nth-child(1) {
  top: 15%;
  left: 5%;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  transform: rotate(45deg);
  animation: shapeFloat1 25s linear infinite;
}

.cta-shape:nth-child(2) {
  top: 60%;
  right: 8%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: shapeFloat2 20s linear infinite reverse;
}

.cta-shape:nth-child(3) {
  bottom: 25%;
  left: 20%;
  width: 40px;
  height: 40px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: shapeFloat3 30s linear infinite;
}

.cta-shape:nth-child(4) {
  top: 40%;
  right: 25%;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  transform: rotate(30deg);
  animation: shapeFloat4 22s linear infinite reverse;
}

@keyframes shapeFloat1 {
  0%, 100% { transform: translateY(0px) rotate(45deg); }
  50% { transform: translateY(-30px) rotate(225deg); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  50% { transform: translateX(-20px) translateY(-40px); }
}

@keyframes shapeFloat3 {
  0%, 100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
  50% { transform: translateX(25px) translateY(-35px) rotate(180deg); }
}

@keyframes shapeFloat4 {
  0%, 100% { transform: translateY(0px) rotate(30deg); }
  50% { transform: translateY(-25px) rotate(210deg); }
}

/* Light Rays Effect */
.cta-light-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
}

.cta-light-rays::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  animation: lightRotate 40s linear infinite;
}

@keyframes lightRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Grid Pattern Overlay */
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-content {
  color: white;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-badge i {
  color: var(--gold);
  font-size: 1rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-title span {
  color: var(--gold);
  position: relative;
}

.cta-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cta-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  min-width: 120px;
  transition: all 0.3s ease;
}

.cta-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-stats .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(6, 108, 60, 0.3);
  border: 2px solid transparent;
}

.cta-primary-btn:hover {
  background: rgba(6, 108, 60, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(6, 108, 60, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trust-icons i {
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-trust p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-style: italic;
}

.cta-visual {
  position: relative;
}

.cta-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(6, 108, 60, 0.3);
}

.cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
}

.card-features i {
  color: var(--gold);
}

/* ---- RESPONSIVE CTA ---- */
@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-stats .stat-item {
    min-width: 100px;
  }

  .cta-actions {
    justify-content: center;
  }

  .trust-icons {
    gap: 0.5rem;
  }

  .trust-icons i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ---- FOOTER ---- */
footer {
  background: linear-gradient(135deg, rgba(6, 18, 13, 0.95) 0%, rgba(12, 35, 28, 0.97) 100%);
  padding: 5rem 5% 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(6, 108, 60, 0.12), transparent 30%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 25%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  position: relative; z-index: 1;
}
.footer-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.footer-brand .nav-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  max-width: 340px;
  line-height: 1.85;
}
.footer-socials {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
}
.footer-links li {
  line-height: 1.6;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a i {
  font-size: 0.75rem;
}
.footer-contact {
  gap: 1rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 18px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.95rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}
.btn-footer:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
  margin: 0;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  footer {
    padding: 4rem 5% 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- PAGE HERO (Inner Pages) ---- */
.page-hero {
  min-height: 50vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 10rem 5% 5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  opacity: 0; transform: scale(1.2);
  animation: zoomFadeIn 2s ease-in-out forwards;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.35) 45%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(26,26,26,0.5); font-size: 0.85rem;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb i { font-size: 0.65rem; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  max-width: 700px;
  color: var(--black);
}
.page-hero-title span { color: var(--gold); }
.page-hero-sub {
  color: rgba(26,26,26,0.75);
  font-size: 1.1rem; max-width: 500px;
  margin-top: 1rem;
}

/* ---- ABOUT PAGE ---- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img {
  width: 100%; height: 550px; object-fit: cover;
  border-radius: var(--radius);
}
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.vm-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.vm-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.vm-card:hover::before {
  opacity: 1;
}
.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 800;
  color: var(--black);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  position: relative; z-index: 2;
}
.vm-card h3 i {
  font-size: 2rem;
  color: var(--gold);
}
.vm-card p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
  position: relative; z-index: 2;
}
.vm-card p:last-of-type {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  margin-top: 1rem;
}
.timeline { position: relative; padding: 3rem 0; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--gold) 0%, rgba(116, 198, 157, 0.3) 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; justify-content: flex-end;
  padding-right: calc(50% + 4rem); margin-bottom: 4rem;
  position: relative;
}
.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0; padding-left: calc(50% + 4rem);
}
.timeline-dot {
  position: absolute; left: 50%; top: 1.2rem;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(116, 198, 157, 0.2), 0 0 0 10px rgba(116, 198, 157, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--black-soft);
  font-weight: 700;
}
.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 8px rgba(116, 198, 157, 0.4), 0 0 0 14px rgba(116, 198, 157, 0.2);
  transform: translateX(-50%) scale(1.3);
}
.timeline-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 420px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.timeline-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(116, 198, 157, 0.2) 0%, transparent 50%, rgba(116, 198, 157, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.timeline-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--green-light));
  transition: height 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}
.timeline-item:hover .timeline-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(45, 106, 79, 0.4);
  transform: translateX(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.timeline-item.right:hover .timeline-card {
  transform: translateX(8px);
}
.timeline-card:hover::before {
  opacity: 1;
}
.timeline-item:hover .timeline-card::after {
  height: 100%;
}
.timeline-year {
  color: var(--gold); font-weight: 900; font-size: 0.95rem;
  letter-spacing: 3px; margin-bottom: 0.8rem; text-transform: uppercase;
}
.timeline-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem;
  color: #000000;
}
.timeline-card p { color: rgba(0, 0, 0, 0.8); font-size: 0.95rem; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08) 0%, transparent 50%, rgba(116, 198, 157, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.value-card:hover {
  transform: translateY(-12px);
  border-color: rgba(45, 106, 79, 0.3);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.value-card:hover::before {
  opacity: 1;
}
.value-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.15), rgba(116, 198, 157, 0.1));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.4s ease;
}
.value-card:hover .value-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.25), rgba(116, 198, 157, 0.15));
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--black);
}
.value-card p { color: rgba(0, 0, 0, 0.75); font-size: 0.95rem; line-height: 1.7; }

/* ---- TEAM PAGE ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(201,162,39,0.3); box-shadow: var(--shadow-gold); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img { transform: scale(1.05); }
.team-socials {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(8px);
  display: flex; justify-content: center; gap: 0.8rem;
  padding: 1rem;
  transform: translateY(100%); transition: var(--transition);
}
.team-card:hover .team-socials { transform: translateY(0); }
.team-socials a {
  width: 36px; height: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 0.8rem;
  transition: var(--transition);
}
.team-socials a:hover { background: var(--gold); color: white; }
.team-info { padding: 1.5rem; background: var(--white); }
.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem;
  color: var(--black);
}
.team-role { color: var(--gold); font-size: 0.85rem; font-weight: 500; }

/* ---- SERVICES PAGE ---- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.service-full-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-full-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1) 0%, transparent 50%, rgba(116, 198, 157, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.service-full-card:hover {
  transform: translateY(-16px);
  border-color: rgba(45, 106, 79, 0.4);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}
.service-full-card:hover::before {
  opacity: 1;
}
.service-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}
.service-full-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-img-overlay {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold), #f0c24b);
  color: #000;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s ease;
  box-shadow: 0 12px 35px rgba(201, 162, 39, 0.35);
  z-index: 2;
}
.service-full-card:hover .service-img-overlay {
  transform: scale(1.2) rotate(-15deg);
  box-shadow: 0 18px 50px rgba(201, 162, 39, 0.5);
}
.service-full-body {
  padding: 2rem;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-full-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.service-full-body p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: auto;
  margin-top: 0.5rem;
}
.service-features li {
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.4;
}
.service-features li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  margin-top: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-link i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}
.service-link:hover {
  color: var(--green);
}
.service-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services-full-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-img-wrap img {
    height: 200px;
  }
}

/* ---- PROJECTS PAGE ---- */
.filter-bar {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: rgba(26,26,26,0.75);
  padding: 0.55rem 1.4rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); border-color: var(--gold);
  color: white; font-weight: 700;
}
.projects-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.project-full-card {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  cursor: pointer;
}
.project-full-card img {
  width: 100%; height: 280px; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.project-full-card:hover img { transform: scale(1.06); }
.project-full-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.proj-tag {
  background: var(--gold); color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.7rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 1px;
  width: fit-content; margin-bottom: 0.5rem;
}
.project-full-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.3rem;
}
.proj-meta-row {
  display: flex; gap: 1rem;
  color: rgba(255,255,255,0.8); font-size: 0.8rem;
}
.proj-meta-row span { display: flex; align-items: center; gap: 0.3rem; }

/* ---- BLOG PAGE ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(6,108,60,0.3); }
.blog-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover img { transform: scale(1.04); }
.blog-body { padding: 1.5rem; }
.blog-cat {
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 0.7rem; display: block;
}
.blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 0.7rem;
  color: var(--black);
}
.blog-body p { color: rgba(26,26,26,0.75); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.blog-meta {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(26,26,26,0.5); font-size: 0.8rem;
}
.read-more {
  color: var(--gold); text-decoration: none; font-weight: 600;
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.3s;
}
.read-more:hover { gap: 0.6rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
}
.contact-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; margin-bottom: 0.3rem; font-size: 0.95rem; color: var(--black); }
.contact-item p { color: rgba(26,26,26,0.8); font-size: 0.9rem; line-height: 1.6; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: #25D366; color: var(--white);
  padding: 1rem 2rem; border-radius: 50px;
  font-weight: 700; text-decoration: none; font-size: 0.95rem;
  transition: var(--transition); margin-top: 1rem;
}
.whatsapp-btn:hover { background: #1FB855; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: whatsappBounce 1s ease-in-out infinite, whatsappGlow 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1FB855;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 50px rgba(37, 211, 102, 0.8);
  animation: none;
}

@keyframes whatsappBounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes whatsappGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.5), inset 0 0 20px rgba(37, 211, 102, 0.1);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.8), inset 0 0 20px rgba(37, 211, 102, 0.2);
  }
}
.contact-form {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.85rem;
  font-weight: 600; color: rgba(26,26,26,0.8);
  margin-bottom: 0.5rem; letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  color: var(--black);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--white); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden; margin-top: 4rem;
  height: 400px; border: 1px solid var(--gray-light);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.8); }
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes slowZoom   { from { transform: scale(1); } to { transform: scale(1.05); } }
@keyframes zoomFadeIn { 0% { transform: scale(1.2); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ---- MOBILE MENU ---- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(245,245,245,0.98);
    backdrop-filter: blur(30px);
    flex-direction: column; align-items: flex-start;
    padding: 6rem 2.5rem 2.5rem;
    gap: 1.5rem; transition: right 0.4s ease;
    border-left: 1px solid var(--gray-light);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1100; }
  nav { padding: 1rem 5%; }

  .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap { order: -1; }
  .about-badge { right: 0; bottom: -15px; }
  .services-grid, .services-full-grid { grid-template-columns: 1fr; }
  .projects-grid, .projects-gallery, .projects-full-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline::before { left: 1rem; }
  .timeline-item, .timeline-item.right { padding-left: 3rem; padding-right: 0; justify-content: flex-start; }
  .timeline-dot { left: 1rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 5rem 5%; }
  .hero-title { font-size: 2.5rem; }
  .projects-grid, .projects-gallery, .projects-full-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
