 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    --black: #0d0d0d;
    --dark: #fcfcfb;          /* CHANGED: Soft Paper White */
    --grey-dark: #ffffff;     /* CHANGED: Pure White for Cards */
    --grey-mid: #f0f0ee;      /* CHANGED: Light Grey Sectioning */
    --grey-light: #555555;    /* CHANGED: Darker Grey for Body Text */
    --grey-pale: #e8e8e6;     /* CHANGED: Light Borders */
    --green: #3a8c4e;
    --green-bright: #2d6a3b;  /* CHANGED: Deepened for contrast on white */
    --green-pale: #e9f2eb;    
    --white: #1a1a1a;         /* CHANGED: Used for Headings (Ink Black) */
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--dark);
    color: var(--black);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: var(--green-pale);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(58,140,78,0.18);
    transition: padding 0.3s;
    
    
    
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
  }
  .nav-logo .fp-mark {
    width: 36px; height: 36px;
  }
  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--white);
    line-height: 1;
  }
  .tag-line  {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.80rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(black);
    position:absolute;
    top:50px;
    left:140px;
  }

  .nav-logo-text span { color: var(--green-bright); }
  .nav-links { /* the element was ul.nav-links */
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    display: flex;
    visibility: visible;
  opacity: 1;
  transorm: none;
    transform: translateY(-10px);
     pointer-events: auto;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green-bright);
    text-decoration: none;
    transition: color 0.25s;
     pointer-events: auto;
  }
  .nav-links a:hover { color: var(--white); 
   opacity: 1;
  visibility: visible;}
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    background: var(--green);
    color: var(--green-pale);
    border: none; cursor: pointer;
    padding: 10px 24px;
    transition: background 0.25s, transform 0.2s;
    border-radius:50px 50px;
  }

  


  .nav-cta:hover { background: var(--green-bright); transform: translateY(-1px); }

  @media screen and (max-width: 768px) {
    /* Hides the quotation button on mobile devices */
    .nav-cta {
        display: none !important;
    }
    
    /* Optional: Ensure the hamburger and logo have space */
    nav {
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    /* 1. Ensure the container allows clicks */
    .nav-links {
        pointer-events: auto !important;
        z-index: 9999 !important;
    }

    /* 2. Ensure individual links are clickable and have a large hit area */
    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
        pointer-events: auto !important;
        position: relative;
        z-index: 10000 !important;
    }
}
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .hamburger span {
    width: 100%;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 2px;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

  
  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 48px 80px 64px;
    position: relative; z-index: 2;
  }
  .hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-tagline::before {
    content: ''; display: block;
    width: 40px; height: 2px;
    background: var(--green-bright);
  }
  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 7vw, 8rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 32px;
  }
  .hero-h1 .accent { color: var(--green-bright); display: block; }
  .hero-desc {
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: var(black);
    max-width: 420px;
    margin-bottom: 32px;
  }

  .hero-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    max-width: 420px;
    margin-top: 16px;
    letter-spacing: 0.04em;
  }

  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: var(--green);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
    border-radius:50px 50px;
  }
  .btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); }
  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius:50px 50px;
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--green-bright); color: var(--green-bright); transform: translateY(-2px); }

  .hero-right {
    position: relative; overflow: hidden;
    background: var(--black);
top:75px;
  }
  

  .slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden; /* This is the "window" */
  position: relative;
}

.slider-train {
  display: flex;
  width: 300%; /* 3 images = 300%, 4 images = 400%, etc. */
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide-img {
  width: 33.333%; /* 100 divided by number of images */
  height: 95%;
  object-fit: cover;
}

.about-right {
    position: relative; overflow: hidden;
    background: var(--black);
top:75px;
  }
  

  .slider-about {
  width: 100%;
  height: 100%;
  overflow: hidden; /* This is the "window" */
  position: relative;
}

.slider-about {
  display: flex;
  width: 300%; /* 3 images = 300%, 4 images = 400%, etc. */
  height: 100%;
  transition: transform 5s cubic-bezier(0.65, 0, 0.35, 1);
}

.about-img {
  width: 33.333%; /* 100 divided by number of images */
  height: 95%;
  object-fit: cover;
}

  /* Fingerprint SVG watermark */
  .fp-watermark {
    position: absolute; bottom: -40px; left: -60px;
    width: 420px; height: 420px;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    filter: grayscale(100%) invert(1);
    object-fit: contain;
  }

  .hero-badge {
    position: absolute; bottom: 48px; right: 48px; z-index: 3;
    width: 100px; height: 100px;
    border-radius: 50%;
    border: 1.5px solid rgba(77,175,102,0.5);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    animation: spin-slow 20s linear infinite;
  }
  .hero-badge-inner {
    text-align: center;
    animation: spin-slow 20s linear infinite reverse;
  }
  .hero-badge-inner .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; color: var(--green-bright);
    line-height: 1;
  }
  .hero-badge-inner .lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.55rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--grey-light);
  }
  @keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

  /* ── STRIP ── */
 /* The container that hides the overflow */
.strip {
  width: 100%;
  overflow: hidden;
  background: #1a1a1a; /* Dark background to make text pop */
  padding: 10px 0;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* The moving part */
.strip-inner {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.strip-item {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0 40px;
  letter-spacing: 2px;
}

/* Add a dot or separator between items */
.strip-item::after {
  content: "•";
  margin-left: 80px;
  color: #2ecc71; /* Brand Green */
}

/* The movement logic */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

.strip:hover .strip-inner {
  animation-play-state: paused;
}

  /* ── ABOUT ── */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    margin-top: 150px;
  }
  .about-img-col {
    position: relative; overflow: hidden; min-height: 500px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 40px;
    position:relative;
    top:100px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}
#sh {
    color: var(--green-bright);
    display: inline-block;
}
.section-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-light);
    max-width: 600px;
    margin: 0 auto;
}
  .about-img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.7;
    transition: transform 6s ease;
  }
  .about-img-col:hover .about-img { transform: scale(1.05); }
  .about-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--grey-dark) 100%);
  }
  .about-green-block {
    position: absolute; top: 40px; left: 40px;
    width: 70px; height: 4px;
    background: var(--green-bright);
  }
  .about-content {
    background: none;
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
    position:relative;
    top:0;
  }

*/* The Master Grid Wrapper */
.flex-container {
  display: grid;
  /* Creates exactly 3 columns of equal width */
  grid-template-columns: repeat(3, 1fr); 
  /* The space between your slideshow boxes */
  gap: 20px; 
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position:relative;
  left:10px;
  top:145px;
}

/* Updated Container Styling */
.slideshow-container {
  /* Removed 'flex: 1' because Grid handles sizing now */
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  /* This ensures all boxes are the same height regardless of image size */
  aspect-ratio: 1/ 1; 
}

/* Mobile Responsive: Stacks them when the screen is too narrow for 3 columns */
@media (max-width: 900px) {
  .flex-container {
    grid-template-columns: 1fr; /* Stacks to 1 column on tablets/phones */
  }
}

 
   .mySlides { display: none; }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .caption {
    padding: 15px;
    text-align: center;
    background-color: white;
    font-weight: 600;
  }

  /* Shared Fade Animation */
  .fade {
    animation-name: fade;
    animation-duration: 0.8s;
  }

  @keyframes fade {
    from { opacity: 0.5 } 
    to { opacity: 1 }
  }

  /* Container for the text overlay */
.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 20); /* Semi-transparent black */
  color: white;
  padding: 15px;
  text-align: left;
}

/* Header style */
.text-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  color:var(--green); /* A nice highlight color */
}

/* Description style */
.text-overlay p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Ensure the slideshow container is the parent for positioning */
.slideshow-container {
  position: relative;

}

/* ── VALUES ── */
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; width: 28px; height: 2px;
    background: var(--green-bright);
    display: block;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 28px;
  }
  .section-title .green { color: var(--green-bright); }
  .about-text {
    font-size: 0.95rem; line-height: 1.85; font-weight: 300;
    color: var(--grey-light);
    margin-bottom: 40px;
  }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .value-card {
    border-top: 2px solid var(--green);
    padding-top: 16px;
  }
  .value-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
  }
  .value-card p {
    font-size: 0.8rem; line-height: 1.6; font-weight: 300;
    color: var(--grey-light);
  }

  /* ── SERVICES ── */
  #services {
    padding: 100px 64px;
    background: none;
      color: var(--white);
      position:relative;
      top:110px;
      margin-bottom: 100px;
	   z-index: 1;
  position: relative;
    
  }
  .services-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap; gap: 24px;
  }
  .services-header-left .section-title { margin-bottom: 0; }
  .services-header-right {
    font-size: 0.9rem; line-height: 1.7; font-weight: 300;
    color: var(--white);
    max-width: 360px;
    border-left: 2px solid var(--green);
    padding-left: 20px;
  }
  .services-grid {
    display: grid;
     
  grid-template-columns: repeat(3, 1fr); /* 4 items in a row */
  gap: 20px;
  }
  .service-card {
    position: relative; overflow: hidden;
    height: 280px;
     width: 280px; /* Let the grid handle the width */
    cursor: pointer;
    border-radius: 28px;
    bordr: 2px solid var(--grey-light);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.16);
    border-color: rgba(255,255,255,0.18);
  }
  .service-img {
    width: 100%; height: 100%;
    object-fit: fit;
    position: absolute; inset: 0;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
                filter 0.5s ease;
    filter: grayscale(20%);
  }
  .service-card:hover .service-img {
    transform: scale(1.08);
    filter: grayscale(0%);
  }
 .servce-mask {
    position: absolute; 
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0.40) 65%,
      rgba(0,0,0,0.78) 100%
    );
    transition: background 0.4s ease;
  }

  .servce-card:hover .service-mask {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0.32) 65%,
      rgba(0,0,0,0.7) 100%
    );
  }
  .service-num {
    position: absolute; top: 28px; right: 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem; line-height: 1;
    color: rgba(255,255,255,0.08);
    transition: color 0.3s;
  }
  .service-card:hover .service-num {  color: var(--white); }
  .service-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 36px;
    transform: translateY(12px);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .service-card:hover .service-content { transform: translateY(0); }
  .service-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--green-bright);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
	 z-index: 3;
  position: relative;
  }
  
  .service-card:hover .service-tag { opacity: 1; transform: translateY(0); }
  .service-content {
  position: absolute;
  bottom: 5px;
  left: 30px;
  /* Removed right: 20px to stop it from stretching */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Keeps everything aligned to the left */
  gap: 8px;
}

.service-title {
  background: rgba(252, 252, 251, 0.95); /* Your Paper White */
  color: var(--black);
  paddig: 2px 16px;
  width: fit-content; /* CRITICAL: This makes the box hug the text */
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--green); /* Industrial accent */
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}


  .service-desc {
    font-size: 0.95rem; line-height: 1.75; font-weight: 300;
    color: rgba(255,255,255,0.92);
    max-width: 360px;
    margin-top: 16px;
    opacity: 1;
    transition: color 0.3s ease;
	position: relative;
  z-index: 10;
  pointer-events: auto;
  display: flex;
  }
  .service-card:hover .service-desc { color: rgba(255,255,255,1); }
  .service-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.12);
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  }
  .service-arrow:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.28);
  }
  .service-arrow::after {
    content: '→'; font-size: 1rem;
  }

 /* Optional: Add a media query for mobile to stack them back */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 2fr; /* Stack in 1 column on small screens */
  }
}

  /* ── STATS ── */
  #stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: none; /* Paper White */
  padding: 60px 64px;
  border-top: 1px solid var(--grey-pale);
  border-bottom: 1px solid var(--grey-pale);
  max-width: 1400px;
  margin: 0 auto;
  position:relative;
  top:20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

/* Vertical divider lines between stats */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--grey-pale);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--black);
  margin-bottom: 10px;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 120px;
  text-align: center;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green); /* Industrial Accent Color */
}

.stat-num:hover {
  color: var(--green);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Mobile: Stack them 2x2 or 1x4 */
@media (max-width: 768px) {
  #stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .stat-item:nth-child(even)::after {
    display: none; /* Hide divider on even items in 2-col mode */
  }
}
  /* ── WHY US ── */
 #why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  color:var(--black);
  
  width: 100%;
  max-width: 100%;       /* Allows it to span the full width */
  margin: 0;             /* Removes the auto-centering */
  padding: 100px 5% 100px 80px; /* Large left padding to align with your logo/header */
  position:relative;
  top:150px;
}

/* Ensure the text content doesn't have internal padding pushing it right */
.why-content {
  
  padding: 0;
  margin: 0;
  text-align: left;
}

/* Optional: If the text feels too narrow, push the grid balance */
@media (min-width: 1200px) {
  #why {
    grid-template-columns: 1.2fr 0.8fr; 
  }
}

/* Feature Grid */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  margin-top: 40px;
}

.why-feat {
  display: flex;
  flex-direction: column; /* Stacked icon on text for better appeal */
  gap: 15px;
}

/* Premium Icon Styling */
.why-feat-icon {
  width: 50px;
  height: 50px;
  background: rgba(46, 204, 113, 0.1); /* Light Green Tint */
  color: #2ecc71; /* Brand Green */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-feat-icon svg {
  width: 24px;
  height: 24px;
}

.why-feat:hover .why-feat-icon {
  background: #2ecc71;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

/* Image Stack Effects */
.why-img-stack {
  position: relative;
}

.why-img-main img {
  width: 85%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-img-accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 50%;
}

.why-img-accent img {
  width: 100%;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-green-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #2ecc71;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 5;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  #why {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-features {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .why-feat {
    flex-direction: row; /* Keep icon to the side on mobile */
    align-items: flex-start;
  }
}
  /* ── CONTACT ── */
 
  #contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 100px 64px;
    background: none;
    position:relative;
    top:150px;
  }

  .contact-left {
    background: var(--green-pale);
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.06);
  }

  .contact-summary {
    max-width: 460px;
  }

  .contact-summary h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.05;
    margin: 22px 0 18px;
  }

  .contact-summary p {
    color: rgba(0,0,0,0.72);
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .contact-list {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
  }

  .contact-list div {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.75);
  }



  .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: none;
  border-radius: 10px;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: 0.3s;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth, natural movement */
}

.contact-card:hover {
 
  transform: translateX(10px);
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #2ecc71; /* Fingerprint Green */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svg-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
 /* Container for the Right Section */
.contact-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

* ── RATING SYSTEM ── */
  .rating-section {
    margin-bottom: 32px;
    text-align: center;
  }

  .rating-section h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    text-align: center;
  }

  .rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .star {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
  }

  .star:hover,
  .star.active {
    color: var(--green);
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(58,140,78,0.3);
  }

  .star:hover ~ .star {
    color: #ddd;
  }

  .star.active ~ .star {
    color: #ddd;
  }

  .rating-feedback {
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 500;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 1. Keep the headers centered and normal */
  #trust {
  padding-top: 100px;
}

#trust .section-label,
#trust .section-title {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

/* 2. ONLY the grid should scroll horizontally */
#trust .trust-grid {
    display: flex !important;
    flex-wrap: nowrap !important; /* Forces items into one row */
    overflow-x: auto !important; /* Adds the scrollbar */
    gap: 20px;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch; /* Smooth scroll for mobile */
}

/* 3. Ensure cards have a consistent size and text wraps correctly */
#trust .trust-card {
    flex: 0 0 300px !important; /* Cards won't shrink, fixed at 300px */
    white-space: normal !important; /* Allows text to wrap inside the card */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 4. Hide scrollbar for a cleaner look */
#trust .trust-grid::-webkit-scrollbar {
    display: none;
}
#trust .trust-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Form Layout Logic */
.form-row {
  display: flex;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Label Styling */
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Input & Select Styling */
/* Updated Input & Textarea styling */
.form-field input, 
.form-field select, 
.form-field textarea {
  background: #ffffff;             /* Solid white background for visibility */
  border: 1px solid #dddddd;      /* Light gray border to define the box */
  padding: 14px;
  border-radius: 10px;
  color: #1a1a1a;                 /* Dark text for better contrast */
  font-family: inherit;
  font-size: 1rem;
  width: 100%;                    /* Ensures it fills the container */
  transition: all 0.3s ease;
  box-sizing: border-box;         /* Prevents padding from breaking width */
}

/* Hover State - Subtle hint when mouse is over */
.form-field textarea:hover,
.form-field input:hover {
  border-color: #cccccc;
}

/* Focus State - Very clear green border when they start typing */
.form-field input:focus, 
.form-field select:focus, 
.form-field textarea:focus {
  outline: none;
  border-color: #2ecc71;          /* Fingerprint Green */
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1); /* Subtle green glow */
}

/* Make placeholder text slightly darker to guide the user */
::placeholder {
  color: #999999;
  opacity: 1;
}

/* Submit Button */
.btn-submit {
  background: #2ecc71;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #27ae60;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

/* The Dark Background */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* Dims the rest of the site */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

/* When the modal is open */
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* The Box containing the Form */
.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(30px);
  transition: 0.4s ease;
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

/* The Close Button */

.close-btn {
  /* Position */
  position: absolute;
  top: 15px;
  right: 15px;
  
  /* Size & Hit Area */
  width: 40px;
  height: 40px;
  
  /* Reset Defaults */
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  
  /* Centering the X */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Layering & Interaction */
  z-index: 9999 !important; /* Forces it to the front */
  transition: all 0.2s ease;
}

.close-btn span {
  font-size: 28px;
  line-height: 1;
  color: #333;
  margin-top: -2px; /* Visual alignment fix */
}

.close-btn:hover {
  background: #eeeeee;
  transform: rotate(90deg); /* Modern feel */
  color: #2ecc71; /* Brand Green */
}

/* New Email Button Styling */
.email-trigger {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Fix for mobile stacking inside the form */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
  /* ── FOOTER ── */
  footer {
    background: var(--green-pale);
    padding: 36px 64px;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 20px;
    border-top: 1px solid rgba(58,140,78,0.2);
    position:relative;
    top:150px;
    bottom:50px;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem; letter-spacing: 0.14em;
    color: var(--grey-light);
  }
  .footer-logo span { color: var(--green-bright); }
  .footer-copy {
    font-size: 0.78rem; font-weight: 300;
     color: var(--black);
    text-align: center;
    
  }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green);
    text-decoration: none;
    transition: color 0.25s;
  }
  .footer-links a:hover { color: var(--green-bright); }

  /* ── ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
	z-index: 2;
  position: relative;
  overflow: visible;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  /* ── DEV BAR ── */
  .dev-bar {
    backgroun: #080808;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 10px 64px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position:relative;
      top:150px;
      bottom:50px;
      z-index: 100;
    
  }
  .dev-bar-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
  }
  .dev-bar-btn {
    display: flex; align-items: center; gap: 8px;
    background: none; border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer; padding: 5px 12px;
    border-radius: 2px;
    transition: border-color 0.25s, background 0.25s;
  }
  .dev-bar-btn:hover { border-color: var(--green); background: rgba(58,140,78,0.08); }
  .dev-bar-logo {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--green);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.05em;
    color: white;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .dev-bar-btn span:last-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    transition: color 0.25s;
  }
  .dev-bar-btn:hover span:last-child { color: var(--green-bright); }

  /* ── FLOATING FAB ── */
  .fab-wrap {
    position: fixed; bottom: 32px; right: 32px;
    z-index: 200;
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  }
  .fab-btn {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--green);
    border: none; cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(58,140,78,0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; align-items: center; justify-content: center;
  }
  .fab-btn:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(58,140,78,0.65); }
  .fab-fp-img {
    width: 40px; height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: transform 0.3s;
  }
  .fab-btn.open .fab-fp-img { transform: rotate(360deg) scale(0.85); }
  .fab-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: rgba(77,175,102,0.4);
    animation: pulse-ring 2.5s ease-out infinite;
    pointer-events: none;
  }
  @keyframes pulse-ring {
    0%   { transform: scale(0.9); opacity: 0.7; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  .fab-menu {
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
    opacity: 0; pointer-events: none;
    transform: translateY(16px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .fab-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .fab-option {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    padding: 10px 18px 10px 14px;
    background: var(--grey-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    white-space: nowrap;
  }
  .fab-option:hover { transform: translateX(-4px); border-color: var(--green); }
  .fab-wa:hover  { background: rgba(37,211,102,0.12); }
  .fab-call:hover{ background: rgba(58,140,78,0.15); }
  .fab-email:hover{ background: rgba(77,175,102,0.1); }
  .fab-opt-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .fab-opt-icon svg { width: 16px; height: 16px; }
  .fab-wa   .fab-opt-icon { background: #25d366; color: white; }
  .fab-call .fab-opt-icon { background: var(--green); color: white; }
  .fab-email.fab-opt-icon { background: #555; color: white; }
  .fab-email .fab-opt-icon { background: #444; color: white; }
  .fab-opt-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--white);
  }

  /* ── DEV MODAL ── */
  .dev-modal {
    display: none;
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
  }
  .dev-modal.open { display: flex; }
  .dev-modal-content {
    background: var(--grey-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--green);
    padding: 48px 40px 40px;
    max-width: 420px; width: 90%;
    position: relative;
    animation: modal-in 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  @keyframes modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .dev-modal-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; color: var(--grey-light);
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
  }
  .dev-modal-close:hover { color: var(--white); transform: rotate(90deg); }
  .dev-modal-logo {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--green);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem; letter-spacing: 0.08em;
    color: white;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 0 4px rgba(58,140,78,0.18);
  }
  .dev-modal-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 4px;
  }
  .dev-modal-subtitle {
    font-size: 0.85rem; font-weight: 300;
    color: var(--grey-light);
    margin-bottom: 28px;
  }
  .dev-modal-cards { display: flex; flex-direction: column; gap: 12px; }
  .dev-modal-card {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 14px 16px;
    transition: background 0.25s, border-color 0.25s;
    text-decoration: none;
  }
  .dev-modal-card:hover { background: rgba(58,140,78,0.1); border-color: var(--green); }
  .dev-modal-card-icon { font-size: 1.2rem; flex-shrink: 0; }
  .dev-modal-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 2px;
  }
  .dev-modal-card-content a {
    font-size: 0.9rem; font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }
  .dev-modal-card-content a:hover { color: var(--green-bright); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-links { 
      display: none; 
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--green-pale);
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      border-top: 1px solid rgba(58,140,78,0.18);
    }
    .nav-links.open { display: flex; }
    .nav-links li { margin: 10px 0; }
    .hamburger { display: flex; }
    #hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 40vh; }
    .hero-left { padding: 120px 28px 60px; }
    #about { grid-template-columns: 1fr; }
    .about-img-col { min-height: 300px; }
    .about-content { padding: 50px 28px; }
    .services-grid { grid-template-columns: 1fr; }
    #stats { grid-template-columns: repeat(2, 1fr); padding: 60px 28px; }
    #services { padding: 70px 28px; }
    .services-header { flex-direction: column; align-items: flex-start; }
    #why { grid-template-columns: 1fr; padding: 70px 28px; gap: 50px; }
    .why-img-stack { height: 380px; }
    #contact { grid-template-columns: 1fr; }
    .contact-left, .contact-right { padding: 50px 28px; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 28px 24px; flex-direction: column; align-items: center; text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    nav { padding: 10px 16px; }
    .nav-logo img { height: 32px; }
    .nav-logo-text { font-size: 1.2rem; }
    .tag-line { display: none; }
    .hero-left { padding: 100px 20px 40px; }
    .hero-h1 { font-size: clamp(3rem, 10vw, 5rem); }
    .hero-desc { max-width: none; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; margin-bottom: 10px; }
    #about .about-content { padding: 40px 20px; }
    #services { padding: 50px 20px; }
    .services-header { margin-bottom: 40px; }
    .services-header-right { padding-left: 0; border-left: none; }
    #stats { grid-template-columns: 1fr; padding: 40px 20px; gap: 30px; }
    .stat-item::after { display: none; }
    #why { padding: 50px 20px; }
    .why-features { gap: 30px; }
    .why-feat { flex-direction: column; text-align: center; }
    .why-feat-icon { margin-bottom: 10px; }
    .contact-left { padding: 40px 20px; }
    .contact-right { padding: 40px 20px; }
    footer { padding: 20px 16px; }
    .dev-bar { padding: 8px 16px; }
    .fab-wrap { bottom: 20px; right: 20px; }
    .fab-btn { width: 50px; height: 50px; }
    .fab-fp-img { width: 30px; height: 30px; }
    .video-grid { grid-template-columns: 1fr; gap: 20px; }
    .video-info { padding: 15px; }
    .strip { padding: 15px 0; }
    .strip-item { font-size: 1rem; padding: 0 30px; }
  }

  .mobile-cta {
    display: none;
  }
  @media (max-width: 700px) {
    .mobile-cta {
      display: flex;
      position: fixed;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      align-items: center;
      justify-content: center;
      background: var(--green);
      color: var(--white);
      width: calc(100% - 32px);
      max-width: 520px;
      padding: 14px 18px;
      border-radius: 999px;
      box-shadow: 0 18px 35px rgba(0,0,0,0.18);
      text-decoration: none;
      font-weight: 700;
      letter-spacing: 0.08em;
      z-index: 210;
    }
  }



/* Quotation */
/* --- QUOTE PAGE SPECIFIC --- */
.quote-page-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px 60px;
  background: #f6f7f8;
  border-radius: 36px;
  box-shadow: 0 35px 90px rgba(37,50,88,0.12);
}

.quote-header {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 220px;
  gap: 32px;
  align-items: center;
  padding: 36px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.quote-header .section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.quote-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 18px;
  color: var(--black);
}

.quote-header p {
  max-width: 560px;
  line-height: 1.8;
  color: rgba(0,0,0,0.72);
  margin-bottom: 0;
}

.header-visual {
  min-height: 200px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(58,140,78,0.16), rgba(58,140,78,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 38px;
  align-items: start;
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 90px 100px;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  margin-bottom: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color: var(--black);
}

.product-row:hover {
  border-color: var(--green);
  transform: translateX(5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.product-row.active {
  background: #f3f8f2;
  border-left: 4px solid var(--green);
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
}

.product-unit {
  font-size: 0.78rem;
  color: #6c6c6c;
  text-transform: uppercase;
}

/* Sidebar & Receipt */
.summary-sidebar {
  position: sticky;
  top: 32px;
}

.receipt-card {
  background: #fff;
  color: #1a1a1a;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.receipt-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--black);
}

.receipt-items {
  margin: 24px 0;
  min-height: 140px;
  font-size: 0.95rem;
  color: #444;
}

.receipt-item-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #555;
}

.total-section {
  border-top: 1px dashed rgba(0,0,0,0.12);
  padding-top: 22px;
  margin-top: 26px;
}

.price-wrap {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--green);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.price-wrap .curr {
  font-size: 0.95rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.btn-whatsapp {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 18px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 20px;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(58,140,78,0.24);
}

.quote-note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .quote-layout { grid-template-columns: 1fr; }
  .summary-sidebar { position: relative; top: 0; }
}

@media (max-width: 600px) {
  .quote-page-wrapper { margin: 40px auto; padding: 0 15px; }
  .quote-header { padding-left: 15px; margin-bottom: 30px; }
  .product-row { grid-template-columns: 1fr; gap: 10px; padding: 15px; text-align: center; }
  .product-row input[type="checkbox"], .product-row input[type="number"] { justify-self: center; }
  .receipt-card { padding: 20px; }
  .price-wrap { font-size: 2.5rem; }
}


/* --- REVIEW PAGE SPECIFIC --- */
.google-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  color: #fbbc05; /* Google's star yellow */
  font-size: 1.2rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-weight: bold;
}

.avatar {
  width: 35px;
  height: 35px;
  background: #00b894; /* Use your brand green */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.review-cta {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
    /* 1. Standardize spacing for all sections */
    section {
        padding: 60px 20px !important; /* Balanced top/bottom and side padding */
        margin: 0 !important; /* Remove large gaps between sections */
    }

    /* 2. Specific fix for the Hero section (to clear the fixed nav) */
    #hero {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    /* 3. Standardize section titles */
    .section-title {
        margin-bottom: 30px !important;
        font-size: 1.8rem !important; /* Slightly smaller for mobile screens */
        line-height: 1.3;
    }

    /* 4. Fix for the Contact section which had very large side padding */
    #contact {
        padding: 60px 20px !important;
    }

    /* 5. Add breathing room between inner elements */
    .section-label {
        margin-bottom: 10px !important;
        display: block;
    }

    /* 6. Ensure container elements don't hit the edge of the screen */
    .container, .trust-grid, .services-grid {
        width: 100% !important;
        padding: 0 5px !important;
    }
}