/* ===== WORK PAGE ===== */

nav a.nav-active { color: var(--saffron); border-bottom: 2px solid var(--saffron); padding-bottom: 2px; }

/* HERO */
.work-hero {
  position: relative;
  min-height: auto;
  height: auto;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5ee 0%, #fffaf5 50%, #f0fff4 100%);
}
.work-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,106,0,.07) 0%, rgba(19,136,8,.05) 100%);
  z-index: 1;
}
.work-hero-portrait {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
  animation: floatUp .8s ease both;
}
.work-hero-content {
  display: none !important;
  position: relative;
  z-index: 2;
  padding: 120px 0 60px 0;
  max-width: 620px;
}
.work-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.work-hero-content h1 span { color: var(--saffron); }
.work-hero-content > p { font-size: 1rem; color: #555; margin-bottom: 20px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #888; }
.breadcrumb a { color: var(--saffron); font-weight: 600; }
.breadcrumb i { font-size: .65rem; color: #bbb; }

/* INITIATIVES */
.initiatives { background: #fff; }
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.init-card {
  border-radius: 14px;
  border: 1px solid #f0e8e0;
  padding: 28px 20px 20px;
  text-align: center;
  transition: .3s;
  opacity: 0;
  transform: translateY(24px);
  background: #fff;
}
.init-card.visible { opacity: 1; transform: translateY(0); }
.init-card:nth-child(2) { transition-delay: .1s; }
.init-card:nth-child(3) { transition-delay: .2s; }
.init-card:nth-child(4) { transition-delay: .3s; }
.init-card:hover { box-shadow: 0 12px 36px rgba(255,106,0,.15); transform: translateY(-6px); }
.init-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.init-icon.orange { background: rgba(255,106,0,.12); color: var(--saffron); }
.init-icon.green  { background: rgba(19,136,8,.12);  color: var(--green); }
.init-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.init-card > p { font-size: .8rem; color: #666; line-height: 1.6; margin-bottom: 14px; }
.init-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}
.init-link { font-size: .82rem; font-weight: 600; color: var(--saffron); transition: .2s; }
.init-link:hover { color: #e05a00; letter-spacing: .5px; }

/* WORK GALLERY */
.work-gallery-section { background: var(--light); }
.wg-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.wg-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid var(--saffron);
  background: transparent;
  color: var(--saffron);
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  font-size: .82rem;
  font-family: inherit;
}
.wg-btn.active, .wg-btn:hover { background: var(--saffron); color: #fff; }
.wg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.wg-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.wg-item img { width: 100%; height: 200px; object-fit: cover; transition: .4s; display: block; }
.wg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,106,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
  color: #fff;
  font-size: 1.6rem;
}
.wg-item:hover img { transform: scale(1.08); }
.wg-item:hover .wg-overlay { opacity: 1; }
.wg-item.hidden { display: none; }

/* DETAILED WORK */
.work-details-section { background: #fff; }
.wd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wd-card {
  padding: 28px 22px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: .3s;
  opacity: 0;
  transform: translateY(20px);
}
.wd-card.visible { opacity: 1; transform: translateY(0); }
.wd-card:nth-child(2) { transition-delay: .1s; }
.wd-card:nth-child(3) { transition-delay: .2s; }
.wd-card:nth-child(4) { transition-delay: .3s; }
.wd-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-4px); }
.wd-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.wd-head i { font-size: 1.6rem; }
.wd-head i.orange { color: var(--saffron); }
.wd-head i.green  { color: var(--green); }
.wd-head h3 { font-size: .95rem; font-weight: 700; }
.wd-card ul { list-style: none; padding: 0; }
.wd-card ul li {
  font-size: .82rem;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.wd-card ul li:last-child { border-bottom: none; }
.wd-card ul li i { font-size: .5rem; color: var(--saffron); flex-shrink: 0; }

/* CTA */
.work-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 70px 0;
}
.work-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.work-cta-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.work-cta-text h2 span { color: var(--saffron); }
.work-cta-text p { color: #aaa; font-size: .9rem; }
.work-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-cta-green {
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: .3s;
  font-family: inherit;
}
.btn-cta-green:hover { background: #0f6b06; }

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(255,106,0,.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }

/* RESPONSIVE */
@media(max-width:992px) {
  .initiatives-grid, .wd-grid { grid-template-columns: repeat(2, 1fr); }
  .wg-grid { grid-template-columns: repeat(2, 1fr); }
 
  .work-hero-content { padding: 100px 0 50px 0; }
  .work-hero-content h1 { font-size: 2.1rem; }
  .work-cta-inner { flex-direction: column; text-align: center; }
  .work-cta-btns { justify-content: center; }
}
@media(max-width:768px) {
  nav, .header .btn-primary { display: none; }
  .hamburger { display: block; }
  .work-hero-content { padding: 80px 20px 40px; text-align: center; margin: 0 auto; max-width: 100%; }
  .work-hero { min-height: auto; height: auto; }
  .initiatives-grid, .wd-grid, .wg-grid { grid-template-columns: 1fr; }
}

/* ── FONT INHERIT ─────────────────────────────────── */
input, select, textarea, button { font-family: 'Poppins', sans-serif; }

/* ── FLOAT UP KEYFRAME ────────────────────────────── */
@keyframes floatUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
