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

:root {
  --green: #0b3d2e;
  --dark-green: #06251c;
  --lime: #b7ff00;
  --white: #ffffff;
  --light: #f5f6f3;
  --dark: #101010;
  --gray: #666666;
}

/* =========================
   Global
========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* =========================
   Header / Top Bar
========================= */
header {
  width: 100%;
  background: var(--white);
  position: relative;
  z-index: 1000;
}

.top-bar {
  height: 42px;
  padding: 0 0 0 8%;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid #e8e8e8;
  overflow: visible;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.top-info i{
  color:var(--lime);
  font-size:14px;
}
.top-socials {
  flex: 1;
  height: 42px;
  background: var(--lime);
  position: relative;
  margin-left: 60px;
}

.top-socials::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 42px solid var(--lime);
  border-left: 30px solid transparent;
}

/* =========================
   Navigation
========================= */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  z-index: 20;
}

.logo {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo img {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
  transform: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
}

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

/* =========================
   Buttons
========================= */
.quote-btn,
.btn,
.about-btn-new {
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s ease;
}

.quote-btn {
  background: var(--green);
  color: var(--white);
  padding: 12px 22px;
}

.quote-btn:hover {
  background: var(--dark-green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
}

.primary {
  background: var(--lime);
  color: #071b13;
  border: 2px solid var(--lime);
  box-shadow: 0 0 25px rgba(183, 255, 0, 0.35);
}

.primary::after {
  content: "→";
  font-size: 18px;
}

.primary:hover {
  transform: translateY(-3px);
  background: #c8ff2e;
  border-color: #c8ff2e;
  box-shadow: 0 0 35px rgba(183, 255, 0, 0.55);
}

.secondary {
  background: transparent;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  border-radius: 0;
  padding: 8px 0;
}

.secondary:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

/* =========================
   Home Hero
========================= */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 120px 8% 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  background:
    linear-gradient(rgba(2, 31, 23, 0.88), rgba(2, 31, 23, 0.9)),
    url("Pics/pic 2.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.tag,
.section-tag {
  display: inline-block;
  color: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  margin-bottom: 25px;
}

.hero p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  color: #e8e8e8;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 470px;
  z-index: 2;
}

.img-shape {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shape-one {
  width: 260px;
  height: 330px;
  right: 260px;
  top: 80px;
  border-radius: 35px;
  z-index: 10;
}

.shape-two {
  width: 290px;
  height: 220px;
  right: 0;
  top: 40px;
  border-radius: 35px 35px 90px 35px;
  z-index: 2;
}

.shape-three {
  width: 430px;
  height: 230px;
  right: -50px;
  bottom: 20px;
  border-radius: 35px 35px 35px 90px;
  z-index: 2;
}

.quality-badge {
  position: absolute;
  left: -35px;
  bottom: 20px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(11, 61, 46, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  z-index: 100;
}

.quality-badge span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark-green);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
}

.quality-badge p {
  max-width: 90px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--white);
}

/* =========================
   Shared Home Sections
========================= */
.about-preview,
.services,
.why,
.cta {
  padding: 90px 8%;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--white);
}

.about-preview h2,
.services h2,
.why h2,
.cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}

.about-preview p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
}

/* =========================
   About Page
========================= */
.about-page,
.about-modern,
.services-page {
  position: relative;
  padding: 150px 8% 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(183, 255, 0, 0.12), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(11, 61, 46, 0.07), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(248, 250, 248, 0.96));
}

.about-page::before,
.about-modern::before,
.services-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 37, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 37, 28, 0.035) 1px, transparent 1px);
  
  background-size: 60px 60px;
  pointer-events: none;
}

.about-page::after,
.about-modern::after {
  content: "FMSA";
  position: absolute;
  right: 2%;
  bottom: -45px;
  font-size: clamp(90px, 15vw, 230px);
  font-weight: 900;
  color: rgba(6, 37, 28, 0.04);
  pointer-events: none;
}

.about-layout,
.about-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.about-left h1 {
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.03;
  color: var(--dark-green);
  margin-bottom: 26px;
}

.about-left h1 span,
.services-hero-text h1 span,
.services-cta h2 span,
.contact-hero h1 span {
  color: var(--lime);
}

.about-intro {
  max-width: 650px;
  color: #1d1d1d;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.bottom-images {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bottom-images img,
.top-about-img,
.services-hero-images img,
.services-cta img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: none;
}

.top-about-img {
  height: 420px;
  border-radius: 28px;
  margin-bottom: 34px;
  object-position: center 42%;
}

.bottom-images img {
  height: 260px;
  border-radius: 24px;
  object-position: center;
}

.about-btn-new {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--dark-green);
  color: var(--white);
  padding: 14px 26px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}

.about-btn-new span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark-green);
  display: grid;
  place-items: center;
}

.about-btn-new:hover {
  transform: translateY(-3px);
  background: var(--green);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.feature-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
}

.feature-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(183, 255, 0, 0.18), transparent 34%),
    var(--dark-green);
  border: 8px solid var(--lime);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 34px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.feature-item h3 {
  color: var(--dark-green);
  font-size: 27px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-item h3::after {
  content: "";
  display: block;
  width: 75px;
  height: 3px;
  background: var(--lime);
  margin-top: 9px;
}

.feature-item p {
  max-width: 620px;
  color: #333333;
  font-size: 17px;
  line-height: 1.65;
}

/* About page image/features compatibility */
.about-images-new {
  margin-top: 30px;
}

.about-images-new > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 28px;
  display: block;
}

.small-img-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.small-img-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

/* =========================
   Home Services Slider
========================= */
.services {
  background: var(--light);
  text-align: center;
}

.services-slider {
  margin-top: 45px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-window {
  width: min(1020px, 100%);
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.service-card {
  flex: 0 0 min(320px, 100%);
  max-width: 320px;
  background: var(--white);
  padding: 35px;
  border-radius: 22px;
  text-align: left;
  border: 1px solid #e5e5e5;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:nth-child(even) {
  background: var(--green);
  color: var(--white);
}

.service-card:nth-child(even) h3,
.service-card:nth-child(even) p {
  color: var(--white);
}

.service-card:hover,
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  color: var(--green);
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}

.slider-btn:hover {
  transform: scale(1.05);
  background: var(--lime);
  color: var(--dark-green);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #d5d5d5;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--green);
}

/* =========================
   Why / CTA / Footer
========================= */
.why {
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.why-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-grid div {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 20px;
}

.why-grid h3 {
  color: var(--lime);
  margin-bottom: 12px;
}

.why-grid p {
  line-height: 1.7;
  color: #e5e5e5;
}

.cta {
  text-align: center;
  background: var(--white);
}

.cta p {
  margin: 18px 0 30px;
  color: var(--gray);
  font-size: 17px;
}

footer {
  padding: 35px 8%;
  text-align: center;
  background: var(--dark-green);
  color: var(--white);
}

footer h3 {
  color: var(--lime);
  margin-bottom: 12px;
}

footer p {
  margin-top: 8px;
  color: #dddddd;
}

/* =========================
   Services Page
========================= */
.services-page {
  padding-bottom: 0;
}

.services-hero,
.services-title,
.service-grid,
.service-values,
.services-cta {
  position: relative;
  z-index: 2;
}

.services-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}

.services-hero-text h1 {
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 1.08;
  color: var(--dark-green);
  margin-bottom: 28px;
}

.services-hero-text p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.services-hero-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.service-img-large {
  height: 390px;
  border-radius: 36px 12px 36px 12px;
}

.services-hero-images div {
  display: grid;
  gap: 18px;
}

.services-hero-images div img {
  height: 186px;
  border-radius: 26px;
}

.services-title {
  text-align: center;
  margin-bottom: 35px;
}

.services-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--dark-green);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.service-box {
  background: var(--white);
  padding: 35px 22px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #042d22;
  border: 5px solid var(--lime);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.35s ease;
}

.service-icon i {
  font-size: 36px;
  color: var(--white);
  transition: 0.35s ease;
}

.service-box:hover .service-icon {
  background: var(--lime);
  transform: translateY(-8px);
}

.service-box:hover .service-icon i {
  color: var(--dark-green);
}

.service-box h3 {
  color: var(--dark-green);
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 18px;
}

.service-box p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

.service-values {
  margin: 70px 0;
  background: var(--dark-green);
  border-radius: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s;
}

.value-item:last-child {
  border-right: none;
}

.value-item:hover {
  background: #0d3328;
}

.value-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: rgba(183, 255, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-icon i {
  color: var(--lime);
  font-size: 32px;
}

.value-text h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.value-text p {
  color: #cfd8d3;
  font-size: 14px;
  line-height: 1.6;
}

.services-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
}

.services-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  color: var(--dark-green);
  margin-bottom: 24px;
}

.services-cta p {
  max-width: 540px;
  color: #333;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.services-cta img {
  height: 330px;
  border-radius: 28px;
}

/* =========================
   Contact Page
========================= */
.contact-page {
  position: relative;
  padding-top: 72px;
  background: var(--white);
  overflow: hidden;
}

.contact-hero {
  min-height: 360px;
  padding: 90px 8%;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 37, 28, 0.96), rgba(6, 37, 28, 0.86), rgba(6, 37, 28, 0.5)),
    url("Pics/PIC10.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.contact-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 25px;
}

.contact-hero h1 span {
  display: block;
}

.contact-hero p {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.7;
  color: #f0f0f0;
}

.contact-content {
  padding: 70px 8% 90px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  background:
    radial-gradient(circle at left, rgba(183, 255, 0, 0.08), transparent 35%),
    linear-gradient(#fff, #f7faf8);
}

.contact-info-box h2,
.contact-form-box h2 {
  color: var(--dark-green);
  font-size: 34px;
  margin-bottom: 12px;
}

.contact-line {
  width: 70px;
  height: 4px;
  background: var(--lime);
  margin-bottom: 35px;
}

.contact-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.contact-item h4 {
  color: var(--dark-green);
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-item p {
  color: #111;
  font-size: 17px;
  line-height: 1.6;
}

.contact-form-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--dark-green);
  font-size: 18px;
  opacity: 0.75;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  outline: none;
  border-radius: 8px;
  padding: 18px 18px 18px 52px;
  font-size: 15px;
  background: var(--white);
  color: #111;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(183, 255, 0, 0.18);
}

.textarea-group {
  margin-top: 22px;
}

.input-group textarea {
  height: 150px;
  resize: none;
}

.send-btn {
  margin-top: 22px;
  border: none;
  background: var(--lime);
  color: var(--dark-green);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition: 0.3s ease;
}

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

.contact-footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 60px 8% 20px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 220px;
  height: auto;
  display: block;
}

.contact-footer h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-footer h4 {
  font-size: 15px;
  margin-bottom: 15px;
}

.contact-footer p {
  color: #dcdcdc;
  line-height: 1.7;
}

.contact-footer a {
  display: block;
  color: #e6e6e6;
  margin-bottom: 12px;
  transition: 0.3s;
}

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

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

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(183, 255, 0, 0.12);
  color: var(--lime);
  display: grid;
  place-items: center;
  margin-bottom: 0;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 14px;
}

/* =========================
   Final About Page Layout
========================= */
.about-page {
  padding: 150px 8% 90px;
}

.about-container {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.about-left h1 {
  max-width: 560px;
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: 1.05;
  margin-bottom: 26px;
}

.about-intro {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.stats {
  display: none !important;
}

.about-images-new {
  margin-top: 36px;
}

.about-images-new > img {
  display: none;
}

.small-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 0;
}

.small-img-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  box-shadow: none;
}

.about-btn-new {
  margin-top: 28px;
}

.about-right {
  position: relative;
  padding-top: 75px;
}

.about-right .top-about-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  display: block;
  margin-bottom: 34px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.feature-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

.feature-icon {
  width: 92px;
  height: 92px;
  margin: 0;
}

.feature-item h3 {
  font-size: 27px;
  margin-bottom: 12px;
}

.feature-item h3::after {
  margin: 9px 0 0;
}

.feature-item p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
}

/* About responsive */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-right {
    padding-top: 0;
  }

  .about-right .top-about-img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 145px 6% 80px;
  }

  .about-left h1 {
    font-size: 42px;
  }

  .small-img-row {
    grid-template-columns: 1fr;
  }

  .small-img-row img,
  .about-right .top-about-img {
    height: 280px;
  }

  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .feature-item h3::after {
    margin: 9px auto 0;
  }
}

.about-stats{
  max-width:1450px;
  margin:45px auto 0;
  padding:35px 0 10px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.about-stats div{
  text-align:center;
}

.about-stats h2{
  color:var(--dark-green);
  font-size:42px;
  line-height:1;
}

.about-stats p{
  margin-top:8px;
  color:#222;
  font-size:16px;
}

@media(max-width:768px){
  .about-stats{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:35px;
  }
}

.hover-image {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.hover-image:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* =========================
   Premium Motion Effects
========================= */
.transition-fade {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

html.is-changing .transition-fade {
  opacity: 0;
  transform: translateY(28px);
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--lime);
  z-index: 99999;
  opacity: 0;
  box-shadow: 0 0 18px rgba(183, 255, 0, 0.75);
  transition: width .55s ease, opacity .25s ease;
}

.page-progress.active {
  width: 100%;
  opacity: 1;
}

.reveal,
.reveal-stagger,
.image-reveal,
.image-reveal-img {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.reveal.show,
.reveal-stagger.show,
.image-reveal.show,
.image-reveal-img.show {
  opacity: 1;
  transform: translateY(0);
}

.image-reveal img,
.image-reveal-img {
  transform: translateY(36px) scale(1.06);
}

.image-reveal.show img,
.image-reveal-img.show {
  transform: translateY(0) scale(1);
}

.reveal-stagger:nth-child(1) { transition-delay: .05s; }
.reveal-stagger:nth-child(2) { transition-delay: .12s; }
.reveal-stagger:nth-child(3) { transition-delay: .19s; }
.reveal-stagger:nth-child(4) { transition-delay: .26s; }
.reveal-stagger:nth-child(5) { transition-delay: .33s; }
.reveal-stagger:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .transition-fade,
  .reveal,
  .reveal-stagger,
  .image-reveal,
  .image-reveal img,
  .image-reveal-img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .value-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .logo img {
    width: 170px;
  }

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

  .hero p,
  .services-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    max-width: 640px;
    margin: 25px auto 0;
  }

  .about-container,
  .services-hero,
  .services-cta,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-right {
    padding-top: 0;
  }

  .about-right .top-about-img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .top-bar {
    height: 34px;
    padding: 0 0 0 4%;
    font-size: 10px;
  }

  .top-info {
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .top-info span {
    font-size: 10px;
  }

  .top-socials {
    height: 34px;
    margin-left: 12px;
  }

  .top-socials::before {
    left: -22px;
    border-top: 34px solid var(--lime);
    border-left: 22px solid transparent;
  }

  .hero-nav {
    top: 34px;
    height: 74px;
    padding: 0 4%;
  }

  .logo,
  .logo img {
    height: auto;
  }

  .logo img {
    width: 125px;
    transform: none;
  }

  nav {
    gap: 12px;
    flex-wrap: nowrap;
  }

  nav a {
    font-size: 11px;
  }

  .quote-btn {
    display: none;
  }

  .hero {
    display: block !important;
    text-align: left;
    padding: 140px 6% 60px !important;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .hero p {
    font-size: 18px;
    line-height: 1.65;
    margin-left: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-visual {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 22px !important;
    margin-top: 45px;
  }

  .hero-visual .img-shape {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 260px !important;
    border-radius: 28px !important;
  }

  .hero-visual .img-shape img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .quality-badge {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 135px !important;
    height: 135px !important;
    margin: 15px auto 0 !important;
    border-radius: 50% !important;
    padding: 18px 10px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .quality-badge span {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 700;
  }

  .quality-badge p {
    margin: 0 !important;
    max-width: 95px;
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
  }

  .about-preview {
    display: block !important;
    padding: 60px 6% !important;
    text-align: left !important;
  }

  .about-preview h2 {
    font-size: 38px !important;
    line-height: 1.15 !important;
    margin-bottom: 22px !important;
  }

  .about-preview p {
    max-width: 100% !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  .about-page,
  .about-modern,
  .services-page {
    padding: 145px 6% 80px;
  }

  .about-container,
  .about-layout,
  .services-hero,
  .services-cta {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-left h1 {
    font-size: 42px;
  }

  .about-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .bottom-images,
  .small-img-row,
  .services-hero-images,
  .form-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .top-about-img,
  .about-images-new > img,
  .services-hero-images img,
  .service-img-large,
  .about-right .top-about-img {
    height: 280px;
  }

  .bottom-images img,
  .small-img-row img,
  .services-hero-images div img {
    height: 220px;
  }

  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .feature-item h3::after {
    margin: 9px auto 0;
  }

  .services-slider {
    flex-direction: column;
  }

  .service-card {
    text-align: center;
  }

  .service-grid,
  .service-values {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none;
    border-bottom: 1px solid rgba(183, 255, 0, 0.25);
  }

  .value-item:last-child {
    border-bottom: none;
  }

  .about-stats,
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
  }

  /* Contact page mobile */
  .contact-page {
    padding: 108px 0 0 !important;
  }

  .contact-hero {
    width: 100% !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 64px 5% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .contact-hero > div {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .contact-hero h1 {
    font-size: clamp(36px, 10vw, 54px) !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
  }

  .contact-hero p {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  .contact-content {
    display: block !important;
    width: 100% !important;
    padding: 42px 3.5% 70px !important;
  }

  .contact-info-box,
  .contact-form-box {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .contact-info-box {
    margin-bottom: 35px !important;
  }

  .contact-form-box {
    padding: 32px 18px !important;
    border-radius: 22px !important;
  }

  .contact-form-box h2 {
    font-size: 36px !important;
    line-height: 1.15 !important;
  }

  .contact-item {
    grid-template-columns: 56px 1fr !important;
    gap: 16px !important;
  }

  .contact-item h4 {
    font-size: 17px !important;
  }

  .contact-item p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .input-group {
    width: 100% !important;
    margin-bottom: 22px !important;
  }

  .input-group i {
    display: none !important;
  }

  .input-group input,
  .input-group textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 17px !important;
    border-radius: 16px !important;
  }

  .input-group input {
    height: 68px !important;
  }

  .input-group textarea {
    height: 190px !important;
    padding-top: 20px !important;
  }

  .input-group input::placeholder,
  .input-group textarea::placeholder {
    font-size: 17px !important;
  }

  .send-btn {
    width: 100% !important;
    height: 66px !important;
    justify-content: center !important;
    padding: 0 20px !important;
    font-size: 17px !important;
    border-radius: 50px !important;
  }
}

@media (max-width: 430px) {
  .top-info {
    gap: 6px;
  }

  .top-info span {
    font-size: 9px;
  }

  .hero-nav {
    padding: 0 3%;
  }

  .logo img {
    width: 105px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 11px;
  }

  .btn {
    padding: 13px 22px;
  }

  .contact-content {
    padding-left: 2.5% !important;
    padding-right: 2.5% !important;
  }

  .contact-form-box {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
