:root {
  --green: #159447;
  --green-dark: #076b35;
  --green-deep: #0c241b;
  --gold: #f2b91d;
  --ink: #111816;
  --muted: #65736f;
  --soft: #f5faf7;
  --white: #ffffff;
  --line: rgba(17, 24, 22, 0.09);
  --shadow: 0 24px 70px rgba(17, 24, 22, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}

.top-strip {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.top-strip-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 36px;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 30px rgba(12, 36, 27, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header.scrolled {
  backdrop-filter: blur(18px);
}

.navbar {
  align-items: center;
  display: flex;
  gap: 24px;
  min-height: 84px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  border: 2px solid rgba(21, 148, 71, 0.2);
  border-radius: 50%;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.brand strong,
.brand small,
h1,
h2 {
  font-family: "Outfit", "Manrope", sans-serif;
}

.brand strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--green);
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.55em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 25px;
  justify-content: center;
}

.nav-links a {
  color: #202825;
  font-size: 14px;
  font-weight: 800;
  position: relative;
}

.nav-links a::after {
  background: var(--green);
  border-radius: 999px;
  bottom: -9px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  width: 22px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 14px 23px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}

.btn.primary,
.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 30px rgba(21, 148, 71, 0.26);
  color: var(--white);
}

.btn.primary:hover,
.nav-cta:hover {
  box-shadow: 0 20px 38px rgba(21, 148, 71, 0.32);
  transform: translateY(-2px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid var(--green);
  color: var(--green-dark);
}

.btn.light {
  background: var(--white);
  color: var(--green-dark);
}

.btn.full {
  width: 100%;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.menu-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 3px;
  width: 28px;
}

.hero {
  min-height: calc(100vh - 120px);
  overflow: hidden;
  padding: 86px 0 135px;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.2) 68%),
    radial-gradient(circle at 24% 20%, rgba(242, 185, 29, 0.34), transparent 22%),
    url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-bg::after {
  background: linear-gradient(180deg, transparent 0%, rgba(245, 250, 247, 0.92) 100%);
  bottom: 0;
  content: "";
  height: 240px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 66px;
  grid-template-columns: minmax(0, 1.18fr) 430px;
  position: relative;
  z-index: 2;
}

.hero-mark {
  border: 4px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: var(--shadow);
  height: 128px;
  margin-bottom: 22px;
  object-fit: cover;
  width: 128px;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(56px, 5.3vw, 84px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
  margin-top: 8px;
  max-width: 720px;
}

h1 span,
h2 span {
  color: var(--green);
}

.hero-copy {
  color: #34423d;
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 34px;
  max-width: 630px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 42px;
}

.hero-stats div {
  border-left: 4px solid var(--green);
  padding-left: 14px;
}

.hero-stats strong,
.hero-stats span {
  color: var(--green-dark);
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

.quote-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.quote-card h2 {
  font-size: 32px;
  margin: 4px 0 20px;
}

.quote-card form {
  display: grid;
  gap: 14px;
}

label {
  color: #23302b;
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 7px;
}

input,
select {
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  min-height: 50px;
  outline: none;
  padding: 0 14px;
}

input:focus,
select:focus {
  border-color: rgba(21, 148, 71, 0.55);
  box-shadow: 0 0 0 4px rgba(21, 148, 71, 0.1);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.whatsapp-float {
  align-items: center;
  background: #22c55e;
  border: 5px solid var(--white);
  border-radius: 50%;
  bottom: 28px;
  box-shadow: 0 18px 36px rgba(34, 197, 94, 0.32);
  color: var(--white);
  display: flex;
  font-size: 16px;
  font-weight: 900;
  height: 66px;
  justify-content: center;
  position: fixed;
  right: 30px;
  width: 66px;
  z-index: 60;
}

.benefits {
  background: var(--white);
  border: 1px solid rgba(21, 148, 71, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -70px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.benefits article {
  border-right: 1px solid var(--line);
  padding: 34px 26px;
  text-align: center;
}

.benefits article:last-child {
  border-right: 0;
}

.icon {
  align-items: center;
  background: #eaf8ef;
  border-radius: 18px;
  color: var(--green);
  display: inline-flex;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin-bottom: 18px;
  width: 58px;
}

.section {
  padding: 104px 0;
}

.soft-bg {
  background:
    radial-gradient(circle at 10% 20%, rgba(21, 148, 71, 0.08), transparent 28%),
    var(--soft);
}

.split {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 0.96fr;
}

.image-stack {
  position: relative;
}

.image-stack img,
.product-card img,
.project-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-stack img {
  border-radius: 26px;
  box-shadow: var(--shadow);
  min-height: 440px;
}

.floating-badge {
  background: var(--white);
  border-left: 6px solid var(--gold);
  border-radius: 16px;
  bottom: 28px;
  box-shadow: var(--shadow);
  display: grid;
  left: 28px;
  padding: 17px 20px;
  position: absolute;
}

.floating-badge strong {
  font-size: 20px;
}

.floating-badge span {
  color: var(--muted);
  font-weight: 700;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-copy p,
.product-card p,
.service-grid p,
.project-card span,
.footer p,
.footer a,
.testimonial-text {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 6px 0 8px;
}

.check-list span {
  color: #26342f;
  font-weight: 800;
}

.section-heading {
  margin: 0 auto 48px;
  max-width: 760px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 6px;
}

.section-heading::after {
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin: 20px auto 0;
  width: 58px;
}

.product-grid,
.service-grid,
.project-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
}

.product-card,
.service-grid article {
  background: var(--white);
  border: 1px solid rgba(21, 148, 71, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(17, 24, 22, 0.07);
  overflow: hidden;
  padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover,
.service-grid article:hover,
.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-card img {
  border-radius: 16px;
  height: 190px;
  margin-bottom: 18px;
}

.product-card h3,
.service-grid h3,
.benefits h3 {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.dark-band {
  background:
    linear-gradient(rgba(9, 21, 18, 0.91), rgba(9, 21, 18, 0.94)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=2000&q=85");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 92px 0;
}

.dark-band .section-kicker {
  color: #5ee389;
}

.dark-band .section-heading h2 {
  color: var(--white);
}

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

.why-grid article {
  text-align: center;
}

.why-grid span {
  align-items: center;
  border: 2px solid rgba(94, 227, 137, 0.72);
  border-radius: 50%;
  color: #5ee389;
  display: inline-flex;
  font-size: 28px;
  font-weight: 900;
  height: 66px;
  justify-content: center;
  margin-bottom: 14px;
  width: 66px;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.service-grid article {
  padding: 28px;
}

.service-grid article strong {
  color: rgba(21, 148, 71, 0.16);
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(17, 24, 22, 0.08);
  height: 380px;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.project-card::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.76));
  content: "";
  inset: 0;
  position: absolute;
}

.project-card div {
  bottom: 24px;
  color: var(--white);
  display: grid;
  left: 24px;
  position: absolute;
  z-index: 2;
}

.project-card strong {
  font-size: 22px;
  font-weight: 900;
}

.project-card span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.testimonial-shell {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 56px minmax(0, 760px) 56px;
  justify-content: center;
}

#testimonialCard {
  background: var(--white);
  border: 1px solid rgba(21, 148, 71, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  min-height: 260px;
  padding: 40px 52px;
  text-align: center;
}

.quote-mark {
  color: rgba(21, 148, 71, 0.22);
  font-family: "Outfit", sans-serif;
  font-size: 74px;
  font-weight: 900;
  height: 42px;
  line-height: 0.8;
}

.testimonial-text {
  font-size: 19px;
  margin: 18px auto 24px;
  max-width: 620px;
}

#testimonialCard strong {
  color: var(--green);
  display: block;
  font-size: 18px;
}

#testimonialCard span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.slider-btn {
  background: var(--white);
  border: 1px solid rgba(21, 148, 71, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(17, 24, 22, 0.08);
  color: var(--green);
  cursor: pointer;
  font-size: 42px;
  height: 56px;
  line-height: 1;
  width: 56px;
}

.dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 24px;
}

.dots button {
  background: rgba(21, 148, 71, 0.25);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  width: 10px;
}

.dots button.active {
  background: var(--green);
  width: 28px;
}

.cta-strip {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  padding: 44px 0;
}

.cta-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.cta-inner p {
  font-weight: 900;
  opacity: 0.92;
}

.cta-inner h2 {
  font-size: 36px;
  letter-spacing: -0.035em;
}

.footer {
  background: #0c1412;
  color: var(--white);
  padding: 68px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.15fr;
}

.footer-logo {
  border-radius: 50%;
  height: 98px;
  margin-bottom: 16px;
  object-fit: cover;
  width: 98px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
}

.footer h3::after {
  background: var(--green);
  bottom: -9px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 38px;
}

.footer a {
  display: block;
  font-weight: 700;
  margin: 8px 0;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 12px;
  height: 38px;
  justify-content: center;
  margin: 0;
  text-transform: uppercase;
  width: 38px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 520px;
  }

  .benefits,
  .product-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .project-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .navbar {
    min-height: 78px;
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    background: var(--white);
    border-radius: 0 0 22px 22px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 58px 0 100px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-stats,
  .hero-actions,
  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .benefits,
  .product-grid,
  .service-grid,
  .footer-grid,
  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .section {
    padding: 74px 0;
  }
}

/* =========================================================
   ABOUT PAGE ADDITIONS
   Reuses the tokens/patterns above (--green, --gold, --ink,
   .section-heading, .icon, .split, .image-stack, .floating-badge,
   .cta-strip) so the About page stays consistent with the home page.
========================================================= */

.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(12, 36, 27, 0.92), rgba(12, 36, 27, 0.62) 60%, rgba(12, 36, 27, 0.25)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=90")
    center/cover no-repeat;
}

.page-hero-content {
  position: relative;
  max-width: 680px;
  color: var(--white);
}

.page-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  color: var(--white);
  max-width: 620px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  max-width: 560px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.mission-card {
  background: var(--white);
  border: 1px solid rgba(21, 148, 71, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(17, 24, 22, 0.07);
  padding: 42px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mission-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.mission-card .icon {
  margin-bottom: 22px;
}

.mission-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--muted);
}

.trust-list {
  display: grid;
  gap: 26px;
}

.trust-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.trust-item h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.trust-item p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 320px;
  }
}

/* =========================================================
   PRODUCTS PAGE ADDITIONS
========================================================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.category-card {
  background: var(--white);
  border: 1px solid rgba(21, 148, 71, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(17, 24, 22, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.category-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.category-body {
  padding: 28px;
}

.category-body h3 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0 0 24px;
}

.feature-list li {
  color: #26342f;
  font-size: 14px;
  font-weight: 700;
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: 900;
}

.compare-wrap {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.compare-table {
  background: var(--white);
  border-collapse: collapse;
  min-width: 640px;
  width: 100%;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
}

.compare-table thead th {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-table tbody td {
  border-bottom: 1px solid var(--line);
  color: #26342f;
  font-size: 14.5px;
  font-weight: 700;
}

.compare-table tbody tr:nth-child(even) {
  background: var(--soft);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #68736d;
  text-decoration: none;
  margin-bottom: 12px;
  line-height: 1.5;
  transition: 0.25s ease;
}

.footer-contact a i {
  width: 18px;
  margin-top: 3px;
  color: #168447;
  font-size: 15px;
  flex-shrink: 0;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact a:hover i {
  transform: scale(1.1);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #252d2a;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-decoration: none;

  font-size: 14px;

  transition: all 0.25s ease;
}

.socials a i {
  line-height: 1;
}

.socials a:hover {
  background: #168447;
  transform: translateY(-3px);
}
/* =========================
   FLOATING WHATSAPP BUTTON
========================= */

.whatsapp-float {
  position: fixed;

  /* Right se thoda andar */
  right: 35px;

  /* Bottom se upar */
  bottom: 55px;

  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #ffffff;

  border: 4px solid #ffffff;
  border-radius: 50%;

  font-size: 38px;
  text-decoration: none;

  z-index: 9999;

  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);

  animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float i {
  font-size: 38px;
  line-height: 1;
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.08);
}


/* Notification 1 */

.whatsapp-float::after {
  content: "1";

  position: absolute;

  top: -5px;
  right: -5px;

  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ff3b30;
  color: #fff;

  border: 2px solid #fff;
  border-radius: 50%;

  font-size: 12px;
  font-weight: 800;

  animation: notificationPulse 1.5s infinite;
}


/* Button animation */

@keyframes whatsappPulse {

  0%, 100% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.08);
  }

  20% {
    transform: scale(0.97);
  }

  30% {
    transform: scale(1.05);
  }

  40% {
    transform: scale(1);
  }
}


/* Notification animation */

@keyframes notificationPulse {

  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}