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

:root {
  --forest: #1b3a2d;
  --forest-dark: #0f2218;
  --forest-mid: #234d3a;
  --lime: #6dcc5a;
  --lime-bright: #8de87a;
  --rust: #c94a2b;
  --sand: #e8dfc8;
  --cream: #f5f0e8;
  --muted: #7a9186;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--forest-dark);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: var(--forest-dark);
  border-bottom: 3px solid var(--lime);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.logo span {
  color: var(--lime);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--lime);
}

.nav-quote {
  background: var(--lime);
  color: var(--forest-dark) !important;
  padding: 0.45rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-quote:hover {
  background: var(--lime-bright) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--lime);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--forest-dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu a {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sand);
  transition: color 0.2s;
  position: relative;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.mobile-menu a:hover {
  color: var(--lime);
}
.mobile-menu a:hover::after {
  transform: scaleX(1);
}
.mobile-menu .m-cta {
  background: var(--lime);
  color: var(--forest-dark) !important;
  padding: 0.6rem 2.5rem;
  border-radius: 2px;
  font-size: 1.5rem;
}

.mobile-menu .m-cta:hover {
  background: var(--lime-bright);
}
.mobile-menu .m-cta::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 4.2rem 3% 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(15, 34, 24, 0.97) 45%,
      rgba(15, 34, 24, 0.7) 100%
    ),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?w=1600&q=80")
      center/cover no-repeat;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-circle.c1 {
  width: 600px;
  height: 600px;
  border: 80px solid rgba(109, 204, 90, 0.05);
  right: -100px;
  top: -150px;
}

.hero-circle.c2 {
  width: 380px;
  height: 380px;
  right: 80px;
  top: 50px;
  border: 2px solid rgba(109, 204, 90, 0.12);
}

.hero-circle.c3 {
  width: 140px;
  height: 140px;
  right: 260px;
  bottom: 100px;
  background: rgba(109, 204, 90, 0.06);
}

.hero-content {
  position: relative;
  max-width: 660px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 1.8rem;
}

.hero-badge {
  font-family: "Rajdhani", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(109, 204, 90, 0.12);
  border: 1px solid rgba(109, 204, 90, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 0.5rem;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--lime);
  animation: pulse 1.8s ease infinite;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

h1 .accent {
  color: var(--lime);
}

h1 .outline {
  -webkit-text-stroke: 2px var(--lime);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.btn-green {
  display: inline-block;
  background: var(--lime);
  color: var(--forest-dark);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-green:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-block;
  border: 2px solid rgba(232, 223, 200, 0.3);
  color: var(--sand);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline-light:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.hero-stats {
  position: relative;
  display: flex;
  background: var(--forest-mid);
  border-top: 2px solid rgba(109, 204, 90, 0.25);
  animation: fadeUp 0.8s ease 0.4s both;
  flex-shrink: 0;
}

.hstat {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--lime);
}

.hstat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.services-section {
  padding: 6rem 5%;
  background: var(--cream);
}

.section-tag {
  display: inline-block;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forest-dark);
  letter-spacing: 0.03em;
  margin-bottom: 3.5rem;
  line-height: 1.1;
}

.section-title span {
  color: var(--lime);
}

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

.scard {
  background: var(--white);
  border-radius: 4px;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(27, 58, 45, 0.1);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

.scard:hover {
  border-color: var(--lime);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(27, 58, 45, 0.12);
}

.scard-icon {
  width: 52px;
  height: 52px;
  background: rgba(109, 204, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  transition: background 0.3s;
}

.scard:hover .scard-icon {
  background: rgba(109, 204, 90, 0.25);
}

.scard h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-dark);
  margin-bottom: 0.7rem;
}

.scard p {
  font-size: 0.9rem;
  color: #5a6e66;
  line-height: 1.65;
}

.scard-num {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(27, 58, 45, 0.05);
  line-height: 1;
}

.about-strip {
  background: var(--forest-dark);
  padding: 5rem 5%;
  display: flex;
  gap: 5%;
  align-items: center;
  flex-wrap: wrap;
}

.about-img-wrap {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 4px;
  filter: brightness(0.85);
}

.about-img-wrap .img-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--lime);
  color: var(--forest-dark);
  padding: 0.9rem 1.3rem;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(109, 204, 90, 0.35);
  max-width: 180px;
  line-height: 1.3;
}

.about-img-wrap .img-tag strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.about-text {
  flex: 1;
  min-width: 260px;
}

.about-text .section-tag {
  color: var(--lime);
}

.about-text .section-title {
  color: var(--white);
}

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(109, 204, 90, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.projects-section {
  padding: 6rem 5%;
  background: var(--cream);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.proj-item {
  position: relative;
  overflow: hidden;
  background: var(--forest-mid);
}

.proj-item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}

.proj-item:nth-child(5) {
  grid-column: 2/4;
}

.proj-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s,
    filter 0.5s;
  filter: brightness(0.9) saturate(0.5);
}
.proj-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.55) saturate(1);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 34, 24, 0.9) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  transform: translateY(10px);
  opacity: 0.8;
  transition: all 0.3s;
}

.proj-item:hover .proj-overlay {
  transform: translateY(0);
  opacity: 1;
}

.proj-label span {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}
.proj-label h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

.testi-section {
  background: var(--forest-mid);
  padding: 5rem 5%;
  text-align: center;
}

.testi-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(109, 204, 90, 0.15);
  border-radius: 4px;
  padding: 2rem;
  max-width: 320px;
  text-align: left;
}

.testi-stars {
  color: var(--lime);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 0.9rem;
  color: var(--sand);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testi-author {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--lime);
}
.testi-location {
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-section {
  padding: 6rem 5%;
  background: var(--cream);
}

.contact-wrap {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 260px;
}

.contact-left p {
  color: #5a6e66;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cdetail {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.cdetail .cicon {
  width: 40px;
  height: 40px;
  background: rgba(109, 204, 90, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cdetail .ctext strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.cdetail .ctext span {
  font-size: 0.95rem;
  color: var(--forest-dark);
}

contact-right {
  flex: 1.2;
  min-width: 280px;
}

.form-row2 {
  display: flex;
  gap: 1rem;
}

.form-row2 .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 1rem;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(27, 58, 45, 0.15);
  color: var(--forest-dark);
  padding: 0.85rem 1.1rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus {
  border-color: var(--lime);
}
.contact-right textarea {
  height: 130px;
  resize: vertical;
}

footer {
  background: var(--forest-dark);
  border-top: 3px solid var(--lime);
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer-logo span {
  color: var(--lime);
}

footer p {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

i {
  font-size: 20px;
  color: var(--rust);
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .proj-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .proj-item:nth-child(1) {
    grid-column: 1 / 3;
  }
  .proj-item:nth-child(5) {
    grid-column: 1 / 3;
  }

  .hero-stats {
    flex-wrap: wrap;
  }
  .hstat {
    min-width: 50%;
  }

  /* About: stack vertically and prevent overflow */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    width: 100%;
    margin-bottom: 2rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 5rem;
  }
  .hero-content {
    padding-bottom: 1.5rem;
  }
  h1 {
    font-size: 2.4rem;
  }
  .hero-sub {
    display: none;
  }
  .hstat {
    padding: 0.8rem 1rem;
  }
  .hstat-num {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.6rem;
  }
  .proj-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .proj-item:nth-child(1),
  .proj-item:nth-child(5) {
    grid-column: auto;
  }
  .proj-item {
    height: 180px;
  }
  .proj-overlay {
    opacity: 1;
    transform: none;
  }
  .form-row2 {
    flex-direction: column;
  }
  .hstat {
    min-width: 50%;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}
