@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root{
  --brand-green: #113820;    
  --brand-cream: #f4eedf;    
  --accent-dark: #133220;    
  --muted: #6b6b6b;
  --max-width: 1200px;
  --header-height: 76px;
  --transition: 220ms ease;
}
:root{
  --green-700:#1E6F4D; 
  --cream:#F5F1E8;     
}
.section--wash{
  background:
    linear-gradient(180deg,
      rgba(30,111,77,.08),        
      rgba(30,111,77,0) 55%,      
      rgba(30,111,77,.06)         
    ),
    var(--cream);
  background-blend-mode: multiply; 
  
}

*{box-sizing:border-box}
html,body{
  scroll-behavior: smooth;
  height:100%}
body{
  margin:0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--accent-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

 .container{
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header */
.site-header{
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 60;
  pointer-events: auto;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  height: var(--header-height);
}

.brand-logo {
  height: 44px;  
  width: auto;
  display: block;
}

/* Nav */
.nav-menu{
  display:flex;
  align-items:center;
  gap:18px;
  transition:var(--transition);
}

.nav-list{
  display:flex;
  list-style:none;
  gap:20px;
  margin:0;
  padding:0;
  align-items:center;
}
.nav-list a {
  position: relative;
  text-decoration: none;
  color: white;
  padding: 10px 6px;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  outline: none;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 4px; 
  height: 2px;
  background: linear-gradient(90deg, rgba(200,169,106,0) 0%, rgba(200,169,106,0.9) 50%, rgba(200,169,106,0) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}


.site-header .nav-menu .nav-list {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: 12px;
  background: rgba(15, 17, 19, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  list-style: none;
  margin: 0;
}

@media (max-width: 768px) {
  .site-header .nav-menu .nav-list {
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    gap: 0.5rem;
  }
}

.nav-cta .btn{
  white-space:nowrap;
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
  transition: all 160ms ease;
  border:0;
  cursor:pointer;
}
.btn-primary{
    padding: 0.51rem .9rem;
  
  background: linear-gradient(180deg, var(--brand-green), #17642f);
  color: white;
  box-shadow: 0 6px 18px rgba(20,60,20,0.18);
}
.btn-primary:hover,
.btn-primary:focus{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(20,60,20,0.22);
  outline:none;
}
.btn-ghost{
  background: transparent;
  color:white;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.navbar-toggler{
  display:none;
  background: transparent;
  border: none;
  padding: 6px;
  cursor:pointer;
}
.toggler-box{display:inline-grid; gap:6px}
.toggler-box .bar{
      background: white;       

  display:block;
  width:22px;
  height:2px;
  border-radius:2px;
}
.navbar-toggler:focus {
  outline: none;     
  box-shadow: none;  
}

.hero{
  position: relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  color: var(--brand-cream);
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 48px;
}

.hero-media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

.hero-media img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8); 
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.scroll-over {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.98);
}

.hero-content{
  position:relative;
  z-index:2;
  padding: clamp(28px, 5vw, 72px);
  width:100%;
  max-width: 920px;
}

.hero-title{
  margin:0 0 12px 0;
  color: white;
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 6vw, 3rem);
  line-height:1.02;
  letter-spacing: -0.5px;
  text-shadow: 0 8px 30px rgba(18,30,18,0.45);
}

.hero-sub{
  color: white;
  max-width: 55ch;
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.hero-actions{ display:flex; gap:12px; margin-bottom:18px; flex-wrap:wrap }

.hero-footer{
  display:flex;
  gap:18px;
  align-items:center;
  margin-top: 10px;
  flex-wrap:wrap;
}

/* Footer */
.site-footer{
  padding: 28px 0;
  background: transparent;
  color:var(--accent-dark);
  text-align:center;
}

.hero-tagline{
  font-size: clamp(01rem, 1.6vw, 2rem);
  line-height: 1.4;
  color: #ffffff;            
  margin: 6px 0 14px 0;      
  font-weight: 500;         
  letter-spacing: 0.02em;   
}
@media (max-width: 480px){
  .hero-tagline{
    margin: 4px 0 12px 0;   
  }
}

@media (max-width: 920px){
  .nav-list { gap: 12px }
  .brand .brand-name{ display:none }
}

@media (max-width: 820px){
  .nav-menu{
    position: absolute;
    top: calc(var(--header-height) + 18px);
    left: 50%; 
    transform: translateX(-50%) scale(.98);
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(12,30,12,0.12);
    width: min(88vw, 360px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform-origin: top center;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    transition: var(--transition);
  }

  .nav-menu.is-open{
    max-height: 500px;
    opacity:1;
    transform: translateX(-50%) scale(1);
  }

  .nav-list{
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding-bottom: 8px;
    width: 100%;
  }

  .nav-cta{
    margin-top: 12px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .nav-list a{
    color:black;
  }

  .navbar-toggler{ display:block }
  .header-inner{ align-items:center }
  .hero-content{ padding-left: 20px; padding-right: 20px }
}

a:focus, button:focus{
  outline: 3px solid rgba(31,122,58,0.18);
  outline-offset: 3px;
  border-radius:6px;
}

@media (max-width:420px){
  .hero-title{ font-size: clamp(1.5rem, 8vw, 2.4rem) }
  .hero-sub{ font-size: 0.95rem }
  .logo-mark{ width:40px; height:40px; font-size:18px }
}

:root {
  --brand-green: #1b5e20;
  --text-color: #133220;
  --bg-light: #f9f9f9;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mission-vision-section {
  overflow-x: clip;
  padding: 80px 5%;
  color: #133220;
  background-color: #f6edde;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  color: rgb(0, 0, 0);
}

.section-header p {
  font-size: 1rem;
  color: #000000;
}

.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.mv-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-icon {
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.mv-card p {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 900px) {
  .mv-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .mv-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .mv-card {
    padding: 10px 12px;
  }
  .mv-card h3 {
    font-size: 1.1rem;
  }
  .mv-card p {
    font-size: 0.88rem;
  }
  .mission-vision-section {
  padding: 80px 0%;
}
}
/* Values Section */
.values-section {
  text-align: center;
  padding: 80px 20px;
  background: #fafafa;
}

.values-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.values-section .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.value-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.value-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  transition: opacity .35s ease, background .35s ease;
  z-index:1;
  pointer-events:none;
}

.value-card:hover::before{
  opacity:.3; 
}

/* Image */
.value-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  position: relative; 
  z-index: 0;
}

.value-card:hover .value-image {
  transform: scale(1.04);
}

.value-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.value-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  color: #fff;
  z-index: 2; 
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s ease;
}

.value-card:hover .value-content {
  transform: translateY(-4px);
}

.value-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  margin-top: auto;
}

.value-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .value-card {
    height: 250px;
  }

  .value-content {
    padding: 15px;
  }

  .value-content h3 {
    font-size: 1.1rem;
  }

  .value-content p {
    font-size: 0.85rem;
  }

  .values-section {
    padding: 60px 10px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 0;                                 
  }

  .value-card {
    height: 260px;                       
  }

  .value-content {
    padding: 14px;
  }

  .value-content h3 {
    font-size: 1.05rem;
  }

  .value-content p {
    font-size: 0.82rem;
  }
}


.products {
  padding: 80px 5%;
  background-color: #fafafa;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.products .subtitle {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: #555;
}

.product-grid {
  display: grid;
  gap: 30px;
  justify-content: center;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
}

.row-1,
.row-2 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
}
.row-2 { margin-bottom: 0; }

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 15; 
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-content {
  color: #fff;
  text-align: center;
  padding: 20px;
  transform: translateY(30px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.overlay-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-content p {
  font-size: 0.95rem;
  color: #ddd;
}

.btn-view {
  margin-top: 15px;
  display: inline-block;
  padding: 8px 22px;
  background: #275c3e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.btn-view:hover {
  background: #e2b380;
}

.product-card:hover img { transform: scale(1.08); }
.product-card:hover .overlay { opacity: 1; }
.product-card:hover .overlay-content { transform: translateY(0); opacity: 1; }

@media (max-width: 1200px) {
  .product-grid,
  .row-1,
  .row-2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .product-grid,
  .row-1,
  .row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .products { 
    padding: 60px 4%;
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
    padding-bottom: 10px;
  }

  .products h2,
  .products .subtitle {
    grid-column: 1 / -1;
  }

  .products > .product-grid { 
    display: contents; 
  }

  .products > .product-grid > .product-card {
    display: block;
    padding-bottom: 30px;
  }

  .image-wrapper {
    aspect-ratio: 2 / 4;
  }

  .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.45);
  }
  .overlay-content {
    opacity: 1;
    transform: none;
  }

  .overlay-content h3 { font-size: 1rem; }
  .overlay-content p  { font-size: 0.85rem; }

  .btn-view {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin-top: 10px;
  }
}

@media (max-width: 380px) {
  .overlay-content h3 { font-size: 0.95rem; }
  .overlay-content p  { font-size: 0.8rem; }
}


.clients-section {
  background: #f8f9f7;
  padding: clamp(50px, 6vw, 80px) 20px;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clients-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #133220;
  margin-bottom: 8px;
}

.clients-subtitle {
  color: #5c6a61;
  margin-bottom: 50px;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.logo-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 50px);
  align-items: center;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(30px, 3vw, 60px);
}

.second-row {
  justify-content: center;
}

.logo-img {
  height: clamp(50px, 6vw, 70px);
  width: auto;
  opacity: 0.85;
  transition: all 0.3s ease;
}


@media (max-width: 900px) {
  .logo-row {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
  }

  .logo-row,
  .second-row {
    display: contents; 
  }

  .logo-img {
    height: 42px;
  }
}




.why-nextwud {
  overflow-x: clip;
  padding: 60px 5%;
  width: 100%;
}

.why-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-header h2 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-header p {
  color: #ffffff;
  font-size: 1rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-content: center;
}

.pillar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 5px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.pillar-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.pillar-img {
  width: 100%;
  max-width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.pillar-card h3 {
  font-weight: 600;
  font-size: 1.13rem;
  color: #22292f;
  margin-bottom: 10px;
}

.pillar-card p {
  color: #707984;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pillar-img {
    height: 150px;
  }
}

@media (max-width: 600px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .pillar-card {
    padding: 12px 8px 16px;
  }

  .pillar-img {
    height: 130px;
  }

  .pillar-card h3 {
    font-size: 1rem;
  }

  .pillar-card p {
    font-size: 0.85rem;
  }
}

.product-comparison {
  background: linear-gradient(180deg, #f8faf8 0%, #edf5ef 100%);
  padding: 80px 20px;
  width: 100%;
  overflow-x: hidden;
}

.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}
.comparison-header h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #133220;
  margin-bottom: 10px;
}
.comparison-header p {
  color: #4f5e50;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.table-scroll {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.product-comparison{
  overflow-y: clip;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  text-align: center;
  padding: 18px 12px;
  border-bottom: 1px solid #eef2ee;
  font-size: 1rem;
  color: #2e3c31;
}
.comparison-table th {
  background: #e8f3ea;
  color: #133220;
  font-weight: 600;
  font-size: 1.05rem;
}
.comparison-table tbody tr:nth-child(odd) {
  background: #f9fbf9;
}
.comparison-table td:first-child {
  font-weight: 600;
  text-align: left;
  color: #275c3e;
}
.comparison-table td i {
  color: #218450;
  margin-right: 8px;
}

.table-icon-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.table-icon-title i {
  font-size: 1.7rem;
  color: #218450;
  margin-bottom: 6px;
}

.table-footer {
  background: #e8f3ea;
  border-radius: 0 0 16px 16px;
  margin-top: 16px;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.table-footer p {
  font-size: 1rem;
  color: #133220;
  margin: 0;
}
.cta-button {
  background: #218450;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.25s;
}
.cta-button:hover {
  background: #1a6f42;
}

@media (max-width: 900px) {
  .comparison-header h2 {
    font-size: 1.7rem;
  }
  .comparison-table th, .comparison-table td {
    font-size: 0.95rem;
    padding: 12px 8px;
  }
  .table-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-header p {
    font-size: 0.9rem;
  }
  .comparison-table td:first-child {
    font-size: 0.9rem;
  }
  .table-scroll {
    border-radius: 10px;
  }
}

.dealer-locator--row{
  background:#f6edde;
  overflow-x:clip;
  padding:46px 6vw;
}

.dealer-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  gap:32px;
  align-items:start;
}
.dealer-grid--two{
  grid-template-columns:minmax(320px,1fr) minmax(320px,1fr);
}

.dealer-content{ max-width:720px; }
.dealer-content h2{
  font-family:'Georgia', serif;
  font-weight:700;
  font-size:2rem;
  color:#22292f;
  margin:0 0 10px 0;
}
.dealer-content p{
  color:#5a6650;
  font-size:1.07rem;
  margin:0 0 20px 0;
  max-width:60ch;
}

.dealer-features{ list-style:none; padding:0; margin:0 0 16px 0; }
.dealer-features li{
  display:flex; align-items:center; gap:12px;
  color:#25744f; font-size:1.06rem; margin-bottom:10px;
}
.dealer-features i{
  color:#218450; font-size:1.05rem; background:#e7efe7;
  border-radius:50%; padding:8px; width:32px; height:32px; text-align:center;
}

.contact-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 16px; border-radius:8px; font-weight:600;
  text-decoration:none; font-size:1rem; transition:.15s ease;
  background:#ffffff; color:#218450; border:1px solid rgba(33,132,80,0.35);
  box-shadow:0 2px 10px rgba(33,132,80,0.06);
}
.contact-btn i{ font-size:1.1rem; color:#218450; }
.contact-btn:hover,.contact-btn:focus{
  background:#218450; color:#fff; border-color:#218450;
  box-shadow:0 6px 18px rgba(33,132,80,0.15);
}

.contact-btn--wa{
  background:#25D366; color:#083b20; border-color:#25D366;
}
.contact-btn--wa:hover,.contact-btn--wa:focus{
  background:#1ebe5d; border-color:#1ebe5d; color:#072f19;
}

.contact-btn--solid{
  background:#218450; color:#fff; border-color:#218450;
}
.contact-btn--solid:hover,.contact-btn--solid:focus{
  background:#196b3f; border-color:#196b3f;
}

.dealer-right .contact-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:12px;
  box-shadow:0 6px 22px rgba(33,132,80,0.06);
  padding:16px;
}
.contact-title{
  margin:0 0 10px 0;
  font-size:1.12rem;
  color:#22292f;
}
.contact-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.contact-list .contact-btn{
  width:100%;
  justify-content:flex-start;
}

@media (max-width:900px){
  .dealer-grid--two{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .dealer-locator--row{ padding:36px 5vw; }
  .contact-list .contact-btn{ justify-content:center; }
}



.resources-downloads {
  overflow-x: clip;
  background: #fafbfc;
  padding: 54px 0 60px 0;
  width: 100%;
}
.resources-header {
  text-align: center;
  margin-bottom: 22px;
}
.resources-header h2 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #22292f;
  margin-bottom: 8px;
}
.resources-header p {
  color: #707984;
  font-size: 1.05rem;
}
.resources-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.resource-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px 0 rgba(40,70,90,0.06);
  padding: 5px 10px;
  max-width: 315px;
  min-width: 240px;
  flex: 1 1 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.resource-card img {
  width: 100%;
  max-width: 290px;
  height: 160px;
  object-fit: cover;
  border-radius: 11px;
  margin-bottom: 16px;
  box-shadow: 0 2px 7px rgba(80,120,90,0.05);
}
.resource-card h3 {
  font-size: 1.13rem;
  font-weight: 600;
  color: #232b1c;
  margin-bottom: 9px;
  margin-top: 6px;
  font-family: 'Arial', sans-serif;
}
.resource-card p {
  color: #707984;
  font-size: 0.99rem;
  margin-bottom: 13px;
}
.download-link {
  color: #30a769;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.07rem;
  margin-top: auto;
  transition: color 0.13s;
}
.download-link:hover, .download-link:focus {
  color: #208a5d;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .resources-grid {
    gap: 16px;
  }
  .resource-card {
    max-width: 340px;
    min-width: 60vw;
    padding: 22px 8px 16px 8px;
  }
  .resource-card img {
    height: 90px;
  }
}
@media (max-width: 700px) {
  .resources-grid {
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
  .resource-card {
    max-width: 96vw;
    min-width: 0;
  }
  .resource-card img {
    height: 150px; 
  }
}


.site-footer{
  background:#1b2722;
  color:#bbcdc0;
  width:100%;
  padding:24px 0 12px 0;
  font-size:0.95rem;
}

.footer-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:20px;
  align-items:start;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-logo-img{ width:120px; height:auto; display:block; }

.footer-group{ color:#e4ffc5; font-size:0.95rem; }

.footer-slogan{ color:#d3ebd4; margin:0; line-height:1.4; }

.footer-social{
  display:flex; gap:10px; list-style:none; padding:0; margin:2px 0 0 0;
}
.footer-social a{
  color:#97e581; background:#22382a; border-radius:50%;
  width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none; transition:background .16s,color .16s;
}
.footer-social a:hover{ background:#2d5434; color:#fff; }

.footer-links{
  display:grid;
  grid-template-columns: repeat(2, minmax(140px,1fr));
  gap:16px 28px;
}

.footer-col h4{
  color:#fff; margin:0 0 8px 0; font-size:1rem; letter-spacing:.02em;
}
.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col li{ margin:6px 0; }
.footer-col a{
  color:#bbcdc0; text-decoration:none; transition:color .15s;
}
.footer-col a:hover{ color:#97e581; }

.footer-base{
  border-top:1px solid #27362d;
  margin-top:16px;
  padding:10px 20px 0 20px;
  max-width:1200px; margin-left:auto; margin-right:auto;
  display:flex; gap:8px; align-items:center; justify-content:space-between; flex-wrap:wrap;
  color:#9cb9a1; font-size:0.9rem;
}
.footer-excellence{ color:#75c994; font-style:italic; }

@media (max-width: 900px){
  .footer-wrap{ grid-template-columns:1fr; }
}
@media (max-width: 520px){
  .footer-links{ grid-template-columns:1fr; }
  .footer-base{ justify-content:flex-start; gap:6px; }
}


#intro-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #113820;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1s ease;
}

#intro-animation.fade-out {
  opacity: 0;
  pointer-events: none;
}

body.loading {
  overflow: hidden;
}

.intro-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px !important;
  position: relative;
  flex-wrap: nowrap;
}

.logo-icon {
  width: 120px;
  max-width: 22vw;
  opacity: 0;
  transform: scale(0.6);
  animation: iconAppear 1s ease forwards 0.5s;
}

.logo-text {
  width: 240px;
  max-width: 45vw;
  opacity: 0;
  transform: translateX(-60px);
  animation: textSlide 1s ease forwards 1.2s;
}

@keyframes iconAppear {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textSlide {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .logo-icon {
    width: 100px;
  }
  .logo-text {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .logo-icon {
    width: 80px;
  }
  .logo-text {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 65px;
  }
  .logo-text {
    width: 130px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  font-size: 28px;
  text-decoration: none;
}

.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  bottom: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 18px;
    right: 18px;
    font-size: 22px;
  }
}
