/* =========================================
   CLEANPRO — style.css
   ========================================= */

/* RESET & TOKENS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #3ec55e;
  --green-dark: #27a348;
  --green-light: #e8fbed;
  --dark: #0e1b12;
  --dark-2: #1a2e1e;
  --mid: #3a4a3e;
  --text: #3d4d41;
  --muted: #788c7d;
  --border: #d4e8d8;
  --white: #ffffff;
  --cream: #f8fdf9;
  --yellow: #f5d94e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(14, 27, 18, 0.1);
  --shadow-sm: 0 2px 12px rgba(14, 27, 18, 0.08);
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 70px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}

.text-center {
  text-align: center;
}
.text-accent {
  color: var(--green-dark);
  font-weight: 600;
}

/* SECTION LABEL */
.section-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.section-label.light {
  color: #9ddba8;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 197, 94, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-nav:hover {
  background: var(--green-dark);
}

.play-icon {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* TOPBAR */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar-links a,
.topbar-links span {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.topbar-links a:hover {
  color: var(--green);
}
.icon {
  font-size: 0.9rem;
}
.topbar-social {
  display: flex;
  gap: 10px;
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.topbar-social a:hover {
  color: var(--green);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.logo-icon-sm {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--green-dark);
  background: var(--green-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(62, 197, 94, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(62, 197, 94, 0.07) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: -50px;
}
.hero-dots {
  position: absolute;
  top: 60px;
  right: 200px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(
    circle,
    var(--border) 1.5px,
    transparent 1.5px
  );
  background-size: 18px 18px;
  opacity: 0.7;
}

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

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.hero-heading {
  margin-bottom: 1rem;
}
.accent {
  color: var(--green);
}

.hero-sub {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  max-width: 480px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 2rem;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* HERO VISUAL */
.hero-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-main {
  width: 360px;
  height: 420px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  border: 3px solid var(--green-light);
}
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-light) 0%, #c8f2d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Simple CSS cleaner illustration */
.cleaner-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fig-body {
  width: 120px;
  height: 180px;
  background: var(--green-dark);
  border-radius: 60px 60px 20px 20px;
  position: relative;
}
.fig-body::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #f5c4a0;
  border-radius: 50%;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px white;
}
.fig-body::after {
  content: "🧹";
  position: absolute;
  right: -40px;
  top: 30px;
  font-size: 2.5rem;
  transform: rotate(30deg);
}
.fig-mop {
  width: 8px;
  height: 60px;
  background: #b87333;
  border-radius: 4px;
  margin-top: 5px;
}

.bubbles {
  position: absolute;
  top: 20px;
  left: 20px;
}
.bubble {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  animation: floatBubble 3s ease-in-out infinite;
}
.b1 {
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}
.b2 {
  width: 20px;
  height: 20px;
  top: -20px;
  left: 40px;
  animation-delay: 0.8s;
}
.b3 {
  width: 14px;
  height: 14px;
  top: 20px;
  left: 70px;
  animation-delay: 1.6s;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-12px) scale(1.05);
    opacity: 1;
  }
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: floatY 3s ease-in-out infinite;
}
.badge-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-head);
}
.badge-label {
  font-size: 0.72rem;
  opacity: 0.85;
}

.hero-years {
  position: absolute;
  bottom: 20px;
  left: -30px;
}
.years-circle {
  width: 90px;
  height: 90px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  animation: floatY 4s ease-in-out infinite reverse;
}
.years-num {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-head);
  line-height: 1;
}
.years-label {
  font-size: 0.55rem;
  opacity: 0.75;
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

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

/* ABOUT */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.about-img-box {
  background: var(--green-light);
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}
.about-img-box--small {
  flex: 0.6;
  height: 220px;
  background: linear-gradient(135deg, #d4f0da, #a8e0b4);
}
.about-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.window-frame {
  display: flex;
  gap: 8px;
}
.wf-pane {
  width: 50px;
  height: 70px;
  background: rgba(62, 197, 94, 0.25);
  border: 3px solid var(--green-dark);
  border-radius: 4px;
}
.squeegee {
  width: 120px;
  height: 10px;
  background: var(--green-dark);
  border-radius: 5px;
  position: relative;
}
.squeegee::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 40px;
  background: #b87333;
  border-radius: 2px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.about-scene-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.spray-bottle {
  width: 40px;
  height: 60px;
  background: var(--green-dark);
  border-radius: 8px 8px 4px 4px;
  position: relative;
}
.spray-bottle::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 24px;
  background: var(--green);
  border-radius: 4px 4px 0 0;
  top: -20px;
  right: -4px;
}
.sparkles {
  display: flex;
  gap: 6px;
}
.sp {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: sparkle 1.5s ease-in-out infinite;
}
.sp1 {
  animation-delay: 0s;
}
.sp2 {
  animation-delay: 0.5s;
}
.sp3 {
  animation-delay: 1s;
}
@keyframes sparkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.stat-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow);
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--green);
}
.stat-lbl {
  font-size: 0.7rem;
  opacity: 0.7;
}

.about-text {
}
.about-text h2 {
  margin-bottom: 1rem;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.5rem 0;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
}

/* STATS BANNER */
.stats-banner {
  background: var(--dark);
  padding: 50px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}
.stat-card:hover {
  background: rgba(62, 197, 94, 0.12);
  border-color: rgba(62, 197, 94, 0.3);
}
.stat-icon {
  font-size: 1.8rem;
}
.stat-content {
  display: flex;
  flex-direction: column;
}
.stat-big {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-head);
  line-height: 1;
}
.stat-name {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services h2 {
  margin-bottom: 0.75rem;
}
.services-sub {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.service-card:hover::before {
  transform: translateY(0);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(62, 197, 94, 0.25);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-num,
.service-card:hover .service-link {
  color: white;
}
.service-card:hover .service-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: color 0.3s;
  z-index: 1;
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.service-card h3 {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.service-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.services-cta {
  color: var(--muted);
  font-size: 0.9rem;
}

/* PROJECTS */
.projects {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 520px;
}
.projects-left {
  background: var(--dark);
  color: white;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects-left h2 {
  color: white;
  margin-bottom: 1rem;
}
.projects-left p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.projects-right {
  padding: 40px;
  background: var(--dark-2);
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.project-card:hover {
  transform: scale(1.02);
}
.project-visual {
  height: 180px;
  position: relative;
}
.pv-1 {
  background: linear-gradient(135deg, #2d6a4f, #52b788);
}
.pv-2 {
  background: linear-gradient(135deg, #1e6091, #4fc3f7);
}
.pv-3 {
  background: linear-gradient(135deg, #386641, #6a994e);
}
.pv-4 {
  background: linear-gradient(135deg, #7b4f12, #d4a464);
}
.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}
.project-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  z-index: 1;
}
.project-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.project-label h4 {
  color: white;
  font-size: 0.9rem;
}

/* CONTACT */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cd-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border: 2px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-item div {
  display: flex;
  flex-direction: column;
}
.contact-detail-item strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-detail-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(62, 197, 94, 0.15);
}
.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.visible {
  display: block;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.form-success h3 {
  margin-bottom: 8px;
}
.form-success p {
  color: var(--muted);
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials h2 {
  margin-bottom: 3rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  position: relative;
}
.t-quote {
  font-size: 5rem;
  line-height: 0.8;
  color: var(--green);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.testimonial-card--featured h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.testimonial-card--featured .t-text {
  color: rgba(255, 255, 255, 0.65);
}
.testimonial-card--featured .t-author strong {
  color: white;
}
.testimonial-card--featured .t-author span {
  color: rgba(255, 255, 255, 0.5);
}

.t-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.t-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ta-dark {
  background: var(--green-dark);
}
.t-author strong {
  font-size: 0.88rem;
  display: block;
  color: var(--dark);
}
.t-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* NEWS */
.news {
  padding: 100px 0;
  background: var(--cream);
}
.news h2 {
  margin-bottom: 3rem;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.news-img {
  height: 200px;
  position: relative;
}
.ni-1 {
  background: linear-gradient(135deg, #1b4332, #40916c);
}
.ni-2 {
  background: linear-gradient(135deg, #4a1942, #9d4edd);
}
.ni-3 {
  background: linear-gradient(135deg, #1e3a5f, #2980b9);
}
.news-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--green);
  color: white;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
}
.nd-day {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-head);
  line-height: 1;
}
.nd-month {
  font-size: 0.65rem;
  opacity: 0.85;
}
.news-body {
  padding: 20px;
}
.news-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.news-cat {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-right: 4px;
}
.news-body h4 {
  margin-bottom: 8px;
  color: var(--dark);
}
.news-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.footer-hours {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--green);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form input:focus {
  border-color: var(--green);
}
.newsletter-form .btn-primary {
  padding: 10px 18px;
  border-radius: 50px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  text-transform: uppercase;
}
.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.ig-box {
  aspect-ratio: 1;
  border-radius: 6px;
  transition: transform 0.2s;
  cursor: pointer;
}
.ig-box:hover {
  transform: scale(1.05);
}
.ig-1 {
  background: linear-gradient(135deg, #2d6a4f, #52b788);
}
.ig-2 {
  background: linear-gradient(135deg, #4a1942, #9d4edd);
}
.ig-3 {
  background: linear-gradient(135deg, #1e6091, #4fc3f7);
}
.ig-4 {
  background: linear-gradient(135deg, #7b4f12, #d4a464);
}
.ig-5 {
  background: linear-gradient(135deg, #1b4332, #40916c);
}
.ig-6 {
  background: linear-gradient(135deg, #1e3a5f, #2980b9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: var(--green);
}
.back-top {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}
.back-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.logo-light span {
  color: white;
}

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-images {
    display: none;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    display: none;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 998;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
    z-index: 999;
  }
  .btn-nav {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .projects {
    grid-template-columns: 1fr;
  }
  .projects-left {
    padding: 60px 24px;
  }
  .projects-right {
    padding: 24px;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Demo image upgrades */
.main-img {
  background:
    linear-gradient(135deg, rgba(14, 27, 18, 0.18), rgba(62, 197, 94, 0.12)),
    url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}
.cleaner-figure,
.bubbles,
.about-scene,
.about-scene-small,
.service-icon,
.stat-icon,
.cd-icon {
  display: none;
}
.about-img-box {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(62, 197, 94, 0.18)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}
.about-img-box--small {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(62, 197, 94, 0.18)),
    url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=700&q=80") center/cover no-repeat;
}
.stat-card:nth-child(1) .stat-icon,
.stat-card:nth-child(2) .stat-icon,
.stat-card:nth-child(3) .stat-icon,
.stat-card:nth-child(4) .stat-icon {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
}
.stat-card:nth-child(1) .stat-icon { background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=300&q=80"); }
.stat-card:nth-child(2) .stat-icon { background-image: url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=300&q=80"); }
.stat-card:nth-child(3) .stat-icon { background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=300&q=80"); }
.stat-card:nth-child(4) .stat-icon { background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=300&q=80"); }
.service-card:nth-child(1) .service-icon-wrap,
.service-card:nth-child(2) .service-icon-wrap,
.service-card:nth-child(3) .service-icon-wrap,
.service-card:nth-child(4) .service-icon-wrap,
.service-card:nth-child(5) .service-icon-wrap,
.service-card:nth-child(6) .service-icon-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-card:nth-child(1) .service-icon-wrap { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=300&q=80"); }
.service-card:nth-child(2) .service-icon-wrap { background-image: url("https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?auto=format&fit=crop&w=300&q=80"); }
.service-card:nth-child(3) .service-icon-wrap { background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=300&q=80"); }
.service-card:nth-child(4) .service-icon-wrap { background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=300&q=80"); }
.service-card:nth-child(5) .service-icon-wrap { background-image: url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=300&q=80"); }
.service-card:nth-child(6) .service-icon-wrap { background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=300&q=80"); }
.contact-detail-item:nth-child(1) .cd-icon,
.contact-detail-item:nth-child(2) .cd-icon,
.contact-detail-item:nth-child(3) .cd-icon,
.contact-detail-item:nth-child(4) .cd-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-detail-item:nth-child(1) .cd-icon { background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=200&q=80"); }
.contact-detail-item:nth-child(2) .cd-icon { background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=200&q=80"); }
.contact-detail-item:nth-child(3) .cd-icon { background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=200&q=80"); }
.contact-detail-item:nth-child(4) .cd-icon { background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=200&q=80"); }
.news-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ni-1 {
  background-image:
    linear-gradient(135deg, rgba(14, 27, 18, 0.2), rgba(62, 197, 94, 0.15)),
    url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=80");
}
.ni-2 {
  background-image:
    linear-gradient(135deg, rgba(14, 27, 18, 0.2), rgba(62, 197, 94, 0.15)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=80");
}
.ni-3 {
  background-image:
    linear-gradient(135deg, rgba(14, 27, 18, 0.2), rgba(62, 197, 94, 0.15)),
    url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=900&q=80");
}
.ig-box {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ig-1 { background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=300&q=80"); }
.ig-2 { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=300&q=80"); }
.ig-3 { background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=300&q=80"); }
.ig-4 { background-image: url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=300&q=80"); }
.ig-5 { background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=300&q=80"); }
.ig-6 { background-image: url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=300&q=80"); }

