/* Global Title and Heading Styles - Consistent Typography */
/* Exclude text on images (.hero, .banner-text) from color changes */
h1:not(.hero h1):not(.banner-text h1), 
h2, h3, h4, h5, h6, 
.section-title, .sub, .subtitle,
.products-header .section-title,
.why-choose-products .section-title,
.markets-reimagined .section-title,
.products-reimagined .section-title {
  text-align: center !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Main Titles (H1) - Excluding hero and banner text */
h1:not(.hero h1):not(.banner-text h1) {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #234e1d;
  text-align: center !important;
}

/* Hero and Banner Text - Use primary green color */
.hero h1, .banner-text h1 {
  text-align: center !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #a3cc25 !important;
  /* Primary green color for hero titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
}

/* Exception: Keep About and Contact hero titles white */
.page-banner .banner-content h1 {
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
}

/* Section Titles (H2) */
h2, .section-title,
.products-header .section-title,
.why-choose-products .section-title,
.markets-reimagined .section-title,
.products-reimagined .section-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #234e1d;
  letter-spacing: 0.3px;
}

/* Subtitles and Supporting Text */
.sub, .subtitle,
.products-reimagined .sub,
.markets-reimagined .sub {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px;
  color: #557c4f;
}

/* Subsection Titles (H3) */
h3, .card h3, .industry-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #26551f;
  text-align: center !important;
}

/* Industry content h3 on images should be white */
.industry-content h3 {
  color: #fff !important;
  text-align: left !important;
}

/* Card Titles (H4) */
h4, .why h4, .market h4, .why-choose-products .why h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #234e1d;
  text-align: center !important;
}

/* Small Titles (H5, H6) */
h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #234e1d;
  text-align: center !important;
}

/* Featured Products Section */
.featured-products-section {
  padding: 80px 0;
  background: #f8f9fa;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.featured-products-container {
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.featured-products-container::-webkit-scrollbar {
  height: 6px;
}

.featured-products-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.featured-products-container::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.featured-products-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary-d);
}

.featured-products-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 20px;
}

.featured-product-card {
  min-width: 280px;
  width: 280px;
  height: 320px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.featured-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.featured-product-card .product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.featured-product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-card:hover .product-image img {
  transform: scale(1.05);
}

.featured-product-card .product-content {
  padding: 24px 20px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.featured-product-card .product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s ease;
}

.featured-product-card:hover .product-title {
  color: var(--primary);
}

.featured-product-card .product-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.featured-product-card:hover .product-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.view-all-center {
  text-align: center;
  margin-top: 50px;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 24px));
  }
}

/* WhatsApp styles - COMMENTED OUT */
/*
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  animation: whatsappSlideIn 1s ease-out 1s forwards;
}

.whatsapp-button {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active,
.whatsapp-button.clicked {
  transform: scale(0.95);
}

.whatsapp-button:focus {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 2px;
}

.whatsapp-icon {
  color: white;
  width: 28px;
  height: 28px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@keyframes whatsappSlideIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*/

/* Responsive WhatsApp button - COMMENTED OUT */
/*
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }
}
*/

/* Responsive adjustments for featured products */
@media (max-width: 768px) {
  .featured-products-container {
    margin-top: 30px;
    padding: 15px 0;
  }
  
  .featured-products-track {
    gap: 20px;
    padding: 0 15px;
  }
  
  .featured-product-card {
    min-width: 260px;
    width: 260px;
    height: 300px;
  }
  
  .featured-product-card .product-image {
    height: 180px;
  }
  
  .featured-product-card .product-content {
    height: 120px;
    padding: 20px 16px;
  }
  
  .featured-product-card .product-title {
    font-size: 16px;
  }
  
  .view-all-center {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .featured-products-container {
    margin-top: 25px;
    padding: 10px 0;
  }
  
  .featured-products-track {
    gap: 16px;
    padding: 0 10px;
  }
  
  .featured-product-card {
    min-width: 240px;
    width: 240px;
    height: 280px;
  }
  
  .featured-product-card .product-image {
    height: 160px;
  }
  
  .featured-product-card .product-content {
    height: 120px;
    padding: 18px 14px;
  }
  
  .featured-product-card .product-title {
    font-size: 15px;
  }
  
  .featured-product-card .product-arrow {
    width: 20px;
    height: 20px;
    right: 14px;
  }
  
  .view-all-center {
    margin-top: 35px;
  }
}

/* Reimagined Products Section - kept for other pages */
.products-reimagined {
  padding: 60px 0;
  background: #f8f9fa;
}
.products-reimagined .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #2d4739;
}
.products-reimagined .sub {
  text-align: center;
  color: #6c7a6e;
  margin-bottom: 32px;
  font-size: 1.1rem;
}
.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Filters styling for products section */
.products-reimagined .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.products-reimagined .filters button {
  background: transparent;
  border: 2px solid #e6ede7;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: #6c7a6e;
  transition: all 0.3s ease;
}

.products-reimagined .filters button.is-checked,
.products-reimagined .filters button:hover {
  background: #2d4739;
  color: #fff;
  border-color: #2d4739;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(45,71,57,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
  width: 100%;
  height: auto;
  min-height: 420px;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(45,71,57,0.12);
}
.product-image {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-name {
  font-size: 1.25rem;
  color: #2d4739;
  margin: 0 0 10px 0;
  font-weight: 600;
  line-height: 1.3;
}
.product-desc {
  font-size: 1rem;
  color: #6c7a6e;
  margin-bottom: 18px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-cta {
  display: inline-block;
  background: #2d4739;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}
.product-cta:hover {
  background: #3d6e3a;
}

@media (max-width: 1024px) {
  .products-row,
  #products-grid.products-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }
  
  .products-reimagined .filters {
    margin-bottom: 24px;
  }
  
  .products-reimagined .filters button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .products-row,
  #products-grid.products-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  .products-reimagined {
    padding: 32px 0;
  }
  
  .products-reimagined .filters {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .products-reimagined .filters button {
    font-size: 13px;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .products-row,
  #products-grid.products-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}
:root{
  --primary:#a3cc25;
  --primary-d:#8db31f;
  --text:#18421c;
  --muted:#3d6e3a;
  --border:#dbead0;
  --bg:#ffffff;
  --bg-soft:#f6fbef;
}
*{box-sizing:border-box}

/* Mobile-first global styles */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body{margin:0;font-family:Arial, Helvetica, sans-serif;color:var(--text);background:var(--bg);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}
a{color:var(--muted);text-decoration:none}
a:hover{text-decoration:underline}
.topbar{background:var(--primary-d);color:#fff;font-size:14px}
.container{max-width:1200px;margin:0 auto;padding:0 16px;overflow-x:hidden;}
.flex{display:flex;align-items:center;justify-content:space-between}
.topbar .row{padding:6px 0}
.topbar .contacts{display:flex;align-items:center;gap:18px}
.topbar .contacts span{display:flex;align-items:center;gap:6px}

/* Contact icons styling */
.contacts svg {
  width: 16px;
  height: 16px;
  color: #fff;
  flex-shrink: 0;
}

/* Social links styling */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.social-links svg {
  width: 16px;
  height: 16px;
}
header{background:#fff;border-bottom:3px solid var(--primary);position:relative;z-index:1000;overflow:visible}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:10px 0;overflow:visible}
.brand{display:flex;align-items:center;gap:10px}
.brand img{height:80px;width:auto;display:block;align-items:left}
.brand .name{font-weight:bold;color:var(--primary-d)}
.mobile-menu-toggle{display:none;flex-direction:column;background:none;border:none;cursor:pointer;padding:4px}
.mobile-menu-toggle span{width:25px;height:3px;background:var(--text);margin:3px 0;transition:0.3s}
.mobile-menu-toggle.active span:nth-child(1){transform:rotate(-45deg) translate(-5px, 6px)}
.mobile-menu-toggle.active span:nth-child(2){opacity:0}
.mobile-menu-toggle.active span:nth-child(3){transform:rotate(45deg) translate(-5px, -6px)}
nav ul{list-style:none;margin:0;padding:0;display:flex;gap:22px;overflow:visible}
nav li{position:relative;overflow:visible}
nav a{font-weight:600;color:#25521f}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1001;
}

.dropdown-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.dropdown-arrow svg {
  width: 12px;
  height: 8px;
  color: #25521f;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #25521f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: left;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  color: var(--primary);
  padding-left: 24px;
}
.cta-btn{background:var(--primary);color:#fff;padding:10px 16px;border-radius:2px;display:inline-block}
.cta-btn:hover{background:var(--primary-d);text-decoration:none}
.hero{position:relative;overflow:hidden;z-index:1}
.hero-carousel{display:flex;width:200%;transition:transform 0.5s ease-in-out}
.hero-slide{width:50%;height:80vh;min-height:600px;background:#eaf5d2;background-size:cover;background-position:center;flex-shrink:0;position:relative}

.hero-nav{position:absolute;top:50%;transform:translateY(-50%);width:100%;display:flex;justify-content:space-between;padding:0 20px;z-index:3;pointer-events:none}
.hero-prev, .hero-next{
  background:rgba(255,255,255,0.8);
  border:none;
  border-radius:50%;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  pointer-events:auto;
}
.hero-prev:hover, .hero-next:hover{
  background:rgba(255,255,255,1);
  transform:scale(1.1);
}
.hero-prev svg, .hero-next svg{
  width:24px;
  height:24px;
  color:#333;
}

.hero .overlay{background:rgba(0,0,0,0.5);position:absolute;inset:0;z-index:-1}

/* Individual slide content */
.slide-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}



.hero .copy {
  max-width: 700px;
  padding: 0 16px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.kicker{
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero h1{
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.1;
  color: #a3cc25;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 1px 1px 3px rgba(255,255,255,0.3);
}

.hero p{
  max-width: 600px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.hero .actions a{
  font-weight: 600;
  text-shadow: none;
}

.features{
  transform: translateY(-110px);
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 2;
}

.card-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;position:relative}

.card{
  background:#fff;
  border:1px solid var(--border);
  padding:24px 18px;
  min-height:160px;
  border-radius:8px;
  text-align:center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover{
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(163, 204, 37, 0.3);
}

.card:hover h3{
  color: #fff;
}

.card:hover p{
  color: #fff;
}

.card:hover .ico{
  stroke: #fff;
}

.card h3{margin:12px 0 8px;color:#26551f;font-size:18px;font-weight:600}

.card p{
  margin:0;
  color:var(--text);
  font-size:14px;
  line-height:1.4;
}

.card .ico{
  width:48px;
  height:48px;
  display:block;
  margin:0 auto 12px;
}

/* YouTube Videos Section */
.videos-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive design for videos */
@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .videos-section {
    padding: 60px 0;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

section{padding:48px 0;border-top:1px solid var(--border)}
h2.section-title{margin:0 0 10px;color:#234e1d;letter-spacing:0.3px}
.sub{color:#557c4f;margin:0 0 14px}
.two-col{display:grid;grid-template-columns:1.2fr 1fr;gap:28px}
/* Force center alignment for hero text - Override previous left alignment */
.hero .copy.left-align,
.hero .copy {
  text-align: center !important;
  margin: 0 auto !important;
  align-items: center !important;
  display: flex;
  flex-direction: column;
}

/* Markets Reimagined Section */
.markets-reimagined {
  padding: 40px 0 60px 0;
  background: linear-gradient(135deg, #FAFFFA 0%, #F0F8F0 25%, #ffffff 50%, #F4FBF4 75%, #FAFFFA 100%);
  position: relative;
  overflow: hidden;
  transform: translateZ(0); /* Force GPU acceleration */
  backface-visibility: hidden; /* Prevent scroll jank */
}

.markets-reimagined::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(163, 204, 37, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(144, 180, 30, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.markets-reimagined::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(163, 204, 37, 0.04) 25%,
    rgba(144, 180, 30, 0.06) 50%,
    rgba(163, 204, 37, 0.04) 75%,
    transparent 100%
  );
  animation: subtleMove 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes subtleMove {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateX(10%) rotate(1deg);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-5%) rotate(-0.5deg);
    opacity: 0.7;
  }
  75% {
    transform: translateX(8%) rotate(0.8deg);
    opacity: 0.9;
  }
}

.markets-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

.markets-reimagined .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-d);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary-d) 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.markets-reimagined .section-title.in-view {
  opacity: 1;
  transform: translateY(0);
}

.markets-reimagined .sub {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.industries-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
  justify-content: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* For desktop: 3 columns for first row, centered 2 columns for second row */
@media (min-width: 1200px) {
  .industries-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    max-width: 1100px;
  }
  
  /* First row: 3 cards taking 2 columns each */
  .industry-card:nth-child(1) {
    grid-column: 1 / 3;
  }
  
  .industry-card:nth-child(2) {
    grid-column: 3 / 5;
  }
  
  .industry-card:nth-child(3) {
    grid-column: 5 / 7;
  }
  
  /* Second row: 2 cards centered (taking columns 2-3 and 4-5) */
  .industry-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  
  .industry-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .industries-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .industry-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 320px;
    justify-self: center;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industries-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .markets-reimagined {
    padding: 30px 0 40px 0;
  }
  
  .markets-reimagined .section-title {
    font-size: 2rem;
  }
  
  .industries-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  
  .industry-card {
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  
  .industry-content {
    padding: 16px;
  }
  
  .industry-content h3 {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .industries-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industry-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 350px;
    justify-self: center;
  }
}

.industry-card {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, opacity 0.3s ease-out;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.industry-card.animate-in {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.industry-card:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.industry-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(1.1) contrast(1.1);
  will-change: transform;
}

.industry-card:hover .industry-image img {
  transform: scale(1.05);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(59, 130, 246, 0.3) 100%
  );
  transition: all 0.3s ease;
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(59, 130, 246, 0.4) 100%
  );
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  z-index: 3;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-content {
  transform: translateY(0);
}

.industry-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.industry-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.industry-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff !important;
  text-align: left !important;
}

.industry-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.industry-card:hover .industry-tag {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Industry-specific styling */
.industry-card.agro {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.industry-card.paints {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.industry-card.personal-care {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.industry-card.pharma {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.industry-card.industrial {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industries-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .markets-reimagined {
    padding: 60px 0;
  }
  
  .markets-reimagined .section-title {
    font-size: 2.2rem;
  }
  
  .industries-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .industry-card {
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .industry-content {
    padding: 20px;
  }
  
  .industry-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .industry-content {
    padding: 24px;
  }
  
  .industry-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .markets-reimagined .section-title {
    font-size: 1.8rem;
  }
  
  .markets-reimagined .sub {
    font-size: 1rem;
  }
  
  .industry-card {
    height: 200px;
  }
  
  .industry-content {
    padding: 20px;
  }
  
  .industry-icon {
    width: 40px;
    height: 40px;
  }
  
  .industry-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .industry-content h3 {
    font-size: 1.1rem;
  }
  
  .industry-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* Old markets grid - keeping for fallback */
.markets-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:24px;margin-top:24px}
.market{text-align:center;padding:16px}
.market img{width:60px;height:60px;margin-bottom:12px}
.market h4{margin:0;color:var(--text);font-size:16px}

/* Products grid */
.filters{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px}
.filters button{background:transparent;border:2px solid var(--border);padding:8px 16px;border-radius:4px;cursor:pointer;font-weight:600}
.filters button.is-checked,.filters button:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
/* Products grid - 4 cards per row design */
#products-grid.products-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
  max-width: 1200px;
  width: 100%;
  margin: 32px auto 0;
  padding: 0;
  height: auto !important;
}

/* Override Isotope positioning but allow filtering */
#products-grid.products-row .product-card {
  position: static !important;
  transform: none !important;
  width: auto !important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
  transition: opacity 0.3s ease;
}

/* Allow Isotope to properly hide filtered items */
#products-grid.products-row .product-card.isotope-hidden {
  display: none !important;
  opacity: 0;
}

.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.p-card{background:#fff;border:1px solid var(--border);border-radius:8px;overflow:hidden;transition:transform 0.3s ease}
.p-card:hover{transform:translateY(-4px)}
.p-media{aspect-ratio:4/3;overflow:hidden}
.p-media img{width:100%;height:100%;object-fit:cover}
.p-body{padding:16px}
.p-title{margin:0 0 8px;color:var(--text);font-size:18px}
.p-desc{margin:0 0 16px;color:var(--muted);font-size:14px;line-height:1.5}
.p-cta{padding:0 16px 16px}
.btn-outline{border:2px solid var(--primary);color:var(--primary);padding:8px 16px;border-radius:4px;display:inline-block;font-weight:600;transition:all 0.3s ease}
.btn-outline:hover{background:var(--primary);color:#fff;text-decoration:none}

/* Why section */
.why-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:24px}

/* Products Page Styles */
.page-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-text {
  color: white !important;
  text-align: center;
  margin-top: 90px;
}

.banner-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: #fff !important;
}

.banner-text p {
  font-size: 1.25rem;
  margin: 0 0 1.5rem 0;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #fff !important;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-top: 1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb .separator {
  opacity: 0.6;
}

.breadcrumb .current {
  opacity: 1;
  font-weight: 600;
}

/* Products Page Layout */
.products-page {
  padding: 80px 0;
  background: #f8f9fa;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-title {
  margin-bottom: 16px;
}

.products-header .sub {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Why Choose Products Section */
.why-choose-products {
  padding: 80px 0;
  background: white;
}

.why-choose-products .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.why-choose-products .sub {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

.why-choose-products .why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-choose-products .why {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.why-choose-products .why.fade-up-animated {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-products .why svg {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  stroke: var(--primary);
}

.why-choose-products .why h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--text);
}

.why-choose-products .why p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Active navigation state */
.nav-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Responsive Design for Products Page */
@media (max-width: 1024px) {
  .why-choose-products .why-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .banner-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  
  .banner-text h1 {
    font-size: 2rem;
  }
  
  .banner-text p {
    font-size: 1rem;
  }
  
  .why-choose-products .why-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .products-page,
  .why-choose-products {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .banner-text h1 {
    font-size: 1.75rem;
  }
  
  .products-header,
  .why-choose-products .sub {
    margin-bottom: 40px;
  }
}

/* Component Styles */
/* Contact Form Enhancements */
.contact-form {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 78, 29, 0.1);
  -webkit-tap-highlight-color: transparent;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

/* Phone input group styling */
.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code-select {
  flex: 0 0 120px;
  min-width: 120px;
}

.phone-input-group input[type="tel"] {
  flex: 1;
}

/* Required field styling */
.form-group label .required {
  color: #dc3545;
}

/* Error message styling */
.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

.contact-info-extended {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-info-extended h4 {
  color: var(--text);
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info-extended p {
  margin: 0 0 20px 0;
  line-height: 1.6;
}

/* Why Choose Us Component Enhancements */
.why-choose-us-section {
  padding: 80px 0;
  background: white;
  min-height: auto;
  overflow: visible;
}

.why-choose-us-section .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.why-choose-us-section .sub {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

.why-choose-us-section .why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.why-choose-us-section .why {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
  padding: 24px;
  border-radius: 12px;
  background: #f8f9fa;
}

.why-choose-us-section .why.fade-up-animated {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-us-section .why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  margin-bottom: 20px;
}

.why-choose-us-section .why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.why-choose-us-section .why-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--text);
}

.why-choose-us-section .why-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Contact Us Section Enhancements */
.contact-us-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-us-section .section-title {
  margin-bottom: 24px;
}

/* Component Loading States */
.component-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--muted);
}

.component-loading::after {
  content: "Loading...";
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideDown {
  0% { 
    opacity: 0; 
    transform: translateY(-10px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes fadeInUp {
  0% { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Responsive Design for Components */
@media (max-width: 1024px) {
  .why-choose-us-section .why-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section .why-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .why-choose-us-section .why {
    padding: 20px;
  }
  
  .why-choose-us-section .why-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
  
  .why-choose-us-section .why-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .why-choose-us-section .why-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .why-choose-us-section,
  .contact-us-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 20px;
  }
  
  .why-choose-us-section .sub,
  .contact-info-extended {
    margin-bottom: 30px;
  }
}
/* General why card styles - fallback for pages without specific why-choose-us-section */
.why{display:flex;gap:16px;align-items:flex-start}
.why svg{width:48px;height:48px;flex-shrink:0}
.why h4{margin:0 0 8px;color:var(--text)}
.why p{margin:0;color:var(--muted);font-size:14px}

/* Blogs Section Styles */
.blogs-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--muted);
}

.blog-title {
  margin: 0 0 16px 0;
}

.blog-title a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--primary-d);
  gap: 12px;
}

.read-more-btn::after {
  content: "→";
  transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 20px;
  }
}

/* Individual Blog Page Styles */
.blog-header {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.blog-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

.blog-hero-content .breadcrumb {
  margin-bottom: 20px;
}

.blog-hero-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.blog-hero-content .blog-category {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-hero-content .blog-date {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.blog-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.blog-article {
  padding: 80px 0;
  background: white;
}

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin: 40px 0 20px 0;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 16px 0;
  line-height: 1.4;
}

.blog-content p {
  margin-bottom: 24px;
  color: var(--text);
}

.blog-content ul, .blog-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.blog-content blockquote p {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-d);
}

.blog-cta {
  background: var(--primary-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
}

.blog-cta h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.blog-cta p {
  margin-bottom: 24px;
  color: var(--muted);
}

.blog-sidebar {
  position: sticky;
  top: 40px;
  height: fit-content;
}

.sidebar-widget {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.related-posts, .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-posts li, .category-list li {
  margin-bottom: 12px;
}

.related-posts a, .category-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.related-posts a:hover, .category-list a:hover {
  color: var(--primary);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb .separator {
  opacity: 0.6;
}

.breadcrumb .current {
  opacity: 1;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .blog-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .blog-sidebar {
    position: static;
  }
  
  /* Footer - Revamped Tablet */
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .company-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .blog-header {
    height: 400px;
  }
  
  .blog-hero-content h1 {
    font-size: 2rem;
  }
  
  .blog-lead {
    font-size: 1.125rem;
  }
  
  .blog-content {
    font-size: 1rem;
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.25rem;
  }
}

/* Page Banner Styles */
.page-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
.about-content {
  padding: 80px 0;
}

.about-intro {
  text-align: center;
  margin-bottom: 80px;
}

.large-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.mission-vision-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.mvv-item {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mvv-item:hover {
  transform: translateY(-5px);
}

.mvv-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  padding: 16px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.mvv-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.mvv-item ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mvv-item ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mvv-item ul li:last-child {
  border-bottom: none;
}

.leadership-section {
  margin-bottom: 80px;
}

.leadership-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.leadership-stats {
  display: grid;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--primary-light);
  border-radius: 16px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.leadership-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.quality-service {
  background: var(--bg-light);
  padding: 60px 0;
  border-radius: 16px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.quality-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quality-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}

/* Contact Page Styles */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 80px;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.contact-info > p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

.business-hours {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
}

.business-hours h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

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

.hours-item span:first-child {
  font-weight: 500;
  color: var(--text);
}

.hours-item span:last-child {
  color: var(--text-light);
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text);
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* Home page Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
  background: var(--primary-light);
}

.contact-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-cta-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-cta {
  text-align: center;
  background: var(--primary-light);
  padding: 60px 40px;
  border-radius: 16px;
}

.contact-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-cta p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn.outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-btn.outline:hover {
  background: var(--primary);
  color: white;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .mission-vision-values {
    grid-template-columns: 1fr;
  }
  
  .leadership-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-cta {
    padding: 40px 20px;
  }
  
  .contact-cta h2 {
    font-size: 2rem;
  }
}

/* Footer */
/* Revamped Footer Styles */
.footer-revamped {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr; /* 4-column layout: Company | Navigation | Markets | Contact */
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: var(--primary);
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section h3 {
  color: var(--primary);
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 700;
}

/* FOOTER LAYOUT FIX: Company Info Section - Better Alignment */
.company-info {
  max-width: 100%;
  padding-right: 20px;
}

.company-info .footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 45px;
  width: auto;
  flex-shrink: 0;
}

.company-tagline {
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 15px 0;
  font-size: 16px;
  line-height: 1.4;
}

.company-description {
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 25px;
  max-width: 90%;
  text-align: left;
}

.social-links-footer {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: flex-start;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(139, 195, 74, 0.1);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.social-link:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(139, 195, 74, 0.1);
  border: 1px solid rgba(139, 195, 74, 0.3);
  border-radius: 8px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
  transform: translateX(5px);
}

/* FOOTER LAYOUT FIX: Contact Info Section - Better Alignment */
.contact-info {
  text-align: left;
  max-width: 100%;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.contact-item span {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.4;
}

.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  margin: 0;
  color: #cccccc;
  line-height: 1.4;
}

/* FOOTER LAYOUT FIX: Footer Bottom - Better Alignment */
.footer-bottom {
  background: #000000;
  padding: 25px 0;
  border-top: 1px solid rgba(139, 195, 74, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright {
  margin: 0;
}

.copyright p {
  margin: 0;
  color: #999999;
  font-size: 14px;
  line-height: 1.4;
}

.footer-legal {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-legal a {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Original Footer Styles (for other pages) */
footer{background:var(--text);color:#fff;padding:32px 0 16px}
.footer-cols{display:grid;grid-template-columns:2fr 1fr 1fr;gap:32px;margin-bottom:24px}
.footer-cols h4{margin:0 0 12px;color:var(--primary)}
.footer-cols a{color:#fff}
.copyright{text-align:center;padding-top:16px;border-top:1px solid #3d6e3a;color:#b8c4b6;font-size:14px}

/* Bullets list */
.bullets{list-style:none;padding:0;margin:16px 0 0}
.bullets li{position:relative;padding-left:20px;margin-bottom:8px}
.bullets li:before{content:'•';position:absolute;left:0;color:var(--primary);font-weight:bold}

/* FOOTER LAYOUT FIX: Tablet responsive improvements - 4 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 equal columns on tablet */
    gap: 30px;
  }
  
  .company-description {
    max-width: 100%;
    font-size: 14px;
  }
  
  .contact-info {
    text-align: left;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Navigation */
  .nav-wrap{flex-wrap:wrap;position:relative}
  .mobile-menu-toggle{display:flex;order:2;margin-left:auto}
  .brand{order:1}
  .brand img{height:60px}
  .nav-menu{order:3;width:100%;display:none;background:#fff;border-top:1px solid var(--border);padding:16px 0}
  .nav-menu.active{display:block}
  .nav-menu ul{flex-direction:column;gap:12px}
  .nav-menu a{display:block;padding:8px 0;text-align:center}
  
  /* Mobile dropdown styles */
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
    margin-top: 8px;
    border-radius: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
  }
  
  .dropdown.active .dropdown-content {
    max-height: 350px;
    padding: 16px 0;
  }
  
  .dropdown-content a {
    text-align: left;
    padding: 12px 24px;
    font-size: 15px;
    color: var(--primary);
    display: block;
    margin: 4px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .dropdown-content a:hover{
    background: rgba(35, 78, 29, 0.1);
    transform: translateX(4px);
  }
  
  .dropdown-arrow {
    display: inline-block;
  }
  header .cta-btn{display:none} /* Hide Request to Quote button in header on mobile */
  
  /* Topbar */
  .topbar .row{display:none} /* Hide topbar on mobile */
  .topbar .contacts{justify-content:center;gap:16px;flex-wrap:wrap}
  .topbar .contacts span{margin-bottom:0}
  
  /* Social links mobile */
  .social-links {
    justify-content: center;
    gap: 24px;
  }
  
  /* Hero */
  .hero-slide{min-height:500px;background-position:center;height:70vh}
  .hero-nav{padding:0 15px}
  .hero-prev, .hero-next{width:45px;height:45px;background:rgba(255,255,255,0.9)}
  .hero-prev svg, .hero-next svg{width:22px;height:22px}
  .hero h1{font-size:36px;line-height:1.2;margin-bottom:20px}
  .hero p{font-size:17px;line-height:1.6;margin-bottom:28px}
  .hero .copy{max-width:100%;padding:0 20px}
  .hero .actions{flex-direction:row;gap:12px;align-items:center;justify-content:center;flex-wrap:wrap}
  .hero .actions a{min-width:160px;text-align:center;font-size:16px;padding:12px 24px}
  
  /* Cards */
  .card-row{grid-template-columns:repeat(2,1fr);gap:16px}
  .features{display:none} /* Hide core values section on mobile */
  .card{min-height:160px;padding:20px 16px;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,0.1);transition:transform 0.3s ease}
  .card:hover{transform:translateY(-4px)}
  .card .ico{width:44px;height:44px}
  .card h3{font-size:1.3rem;margin-bottom:12px}
  .card p{font-size:15px;line-height:1.5}
  
  /* Enhanced Markets */
  .markets-enhanced {
    padding: 60px 0;
  }
  
  .markets-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .market-card {
    padding: 30px 15px;
  }
  
  .market-icon {
    width: 60px;
    height: 60px;
  }
  
  /* Markets */
  .markets-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  
  .products-reimagined .filters {
    margin-bottom: 24px;
  }
  
  .products-reimagined .filters button {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  /* Products */
  .grid{grid-template-columns:repeat(2,1fr);gap:16px}
  /* Override for new products grid */
  #products-grid.products-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .filters{justify-content:center}
  .filters button{font-size:14px;padding:6px 12px}
  
  /* Why section */
  .why-row{grid-template-columns:repeat(2,1fr);gap:16px}
  
  /* Two column layouts */
  .two-col{grid-template-columns:1fr;gap:24px}
  
  /* Footer - Original */
  .footer-cols{grid-template-columns:1fr;gap:24px;text-align:center}
  
  /* Footer - Revamped - IMPROVED LAYOUT */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  
  /* FOOTER LAYOUT FIX: Stack navigation and markets on mobile */
  .navigation-markets .nav-markets-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .navigation-markets h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .company-info .footer-brand {
    justify-content: center;
  }
  
  .social-links-footer {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Form */
  form input,form textarea{font-size:16px} /* Prevents zoom on iOS */
}

@media (max-width: 480px) {
  .why-row{grid-template-columns:1fr !important;gap:16px}
  .container{padding:0 12px}
  
  /* Hero */
  .hero-slide{min-height:450px;height:65vh}
  .hero h1{font-size:30px;line-height:1.3}
  .hero p{font-size:16px;line-height:1.5}
  .hero .copy{padding:0 16px}
  .hero .actions{flex-direction:column;gap:12px}
  .hero .actions a{width:100%;max-width:250px}
  .kicker{font-size:13px;margin-bottom:16px}
  
  /* Cards */
  .card-row{grid-template-columns:1fr;gap:16px}
  .card{padding:20px 16px;min-height:140px;border-radius:12px}
  .card .ico{width:40px;height:40px}
  .card h3{font-size:1.2rem}
  .card p{font-size:14px;line-height:1.5}
  
  /* Enhanced Markets */
  .markets-grid-new {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .market-card {
    padding: 25px 15px;
  }
  
  .market-icon {
    width: 50px;
    height: 50px;
  }
  
  /* Markets */
  .markets-grid{grid-template-columns:1fr;gap:12px}
  .market img{width:48px;height:48px}
  
  /* Products - single column on very small screens */
  .grid{grid-template-columns:1fr;gap:12px}
  #products-grid.products-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  /* Sections */
  section{padding:32px 0}
  
  /* Typography */
  h2.section-title{font-size:24px}
}

/* New About Us Sections */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.value-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
}

.value-item h4 {
  color: var(--primary);
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.value-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.team-section {
  margin: 40px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.team-member h3 {
  color: var(--primary);
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.team-member h4 {
  color: var(--muted);
  margin: 0 0 16px 0;
  font-size: 1rem;
  font-weight: 500;
}

.team-member p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.featured-products-services,
.why-choose-section {
  margin: 40px 0;
}

.products-services-grid,
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-service-item,
.why-choose-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary);
}

.product-service-item h4,
.why-choose-item h4 {
  color: var(--primary);
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.product-service-item p,
.why-choose-item p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

/* WhatsApp Float Button Styles - COMMENTED OUT */
/*
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
*/

@media (max-width: 768px) {
  .values-grid,
  .products-services-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-member {
    padding: 20px;
  }
  
  /*
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  */
}

/* Responsive Typography for Consistent Title Sizing */
@media (max-width: 768px) {
  h1:not(.hero h1):not(.banner-text h1) {
    font-size: 2.2rem !important;
  }
  
  h2, .section-title,
  .products-header .section-title,
  .why-choose-products .section-title,
  .markets-reimagined .section-title,
  .products-reimagined .section-title {
    font-size: 1.8rem !important;
  }
  
  .sub, .subtitle,
  .products-reimagined .sub,
  .markets-reimagined .sub {
    font-size: 1rem !important;
  }
  
  h3, .card h3, .industry-content h3 {
    font-size: 1.3rem !important;
  }
  
  h4, .why h4, .market h4, .why-choose-products .why h4 {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  h1:not(.hero h1):not(.banner-text h1) {
    font-size: 1.8rem !important;
  }
  
  h2, .section-title,
  .products-header .section-title,
  .why-choose-products .section-title,
  .markets-reimagined .section-title,
  .products-reimagined .section-title {
    font-size: 1.5rem !important;
  }
  
  .sub, .subtitle,
  .products-reimagined .sub,
  .markets-reimagined .sub {
    font-size: 0.9rem !important;
  }
}

/* Placeholder text for missing images */
.placeholder-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #666;
  font-size: 0.8rem;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 200px;
  min-height: 150px;
}

/* Mobile Form Optimizations */
@media (max-width: 480px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .form-group select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
  }
  
  .cta-btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    border: none;
    cursor: pointer;
  }
}

/* Additional Mobile Touch Improvements */
@media (max-width: 768px) {
  /* Improve touch targets */
  .industry-card,
  .product-card,
  .featured-product-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  /* Better button styles */
  button, .cta-btn, input[type="submit"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
  }
  
  /* Improve dropdown arrow visibility */
  .dropdown-arrow svg {
    width: 14px;
    height: 14px;
  }
  
  /* Image optimizations for mobile */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Optimize background images for mobile */
  .hero-slide {
    background-attachment: scroll; /* Better performance on mobile */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .industry-image img,
  .product-image img,
  .featured-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  
  .brand img {
    max-height: 50px;
    width: auto;
  }
  
  /* Touch feedback animations */
  .card-pressed {
    transform: scale(0.98) !important;
    opacity: 0.8 !important;
    transition: all 0.1s ease !important;
  }
  
  /* Additional mobile browser compatibility */
  body.menu-open {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
  
  /* iOS Safari specific fixes */
  @supports (-webkit-touch-callout: none) {
    .hero-slide {
      min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    }
    
    .nav-menu {
      -webkit-overflow-scrolling: touch;
    }
  }
  
  /* Android specific fixes */
  @media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .form-group input,
    .form-group select,
    .form-group textarea {
      background-color: white;
    }
  }
}


/* Mobile Footer Enhancements */
@media (max-width: 480px) {
  .footer-main {
    padding: 35px 0 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  /* Company Info Section - Compact mobile layout */
  .company-info {
    order: 1;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 195, 74, 0.2);
  }
  
  .company-info .footer-brand {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .footer-logo {
    height: 32px;
  }
  
  .company-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .company-tagline {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .company-description {
    font-size: 13px;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto 20px;
  }
  
  .social-links-footer {
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link svg {
    width: 16px;
    height: 16px;
  }
  
  /* Navigation Section */
  .footer-section:nth-child(2) {
    order: 2;
  }
  
  /* Markets Section - Hide on mobile or make collapsible */
  .footer-markets-mobile {
    order: 3;
  }
  
  .footer-markets-mobile h4 {
    position: relative;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 195, 74, 0.2);
    margin-bottom: 0;
  }
  
  .footer-markets-mobile .toggle-icon {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    transition: transform 0.3s ease;
    font-size: 16px;
    color: var(--primary);
  }
  
  .footer-markets-mobile.open .toggle-icon {
    transform: translateX(50%) rotate(45deg);
  }
  
  .footer-markets-mobile .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
  }
  
  .footer-markets-mobile.open .collapsible-content {
    max-height: 200px;
    margin-top: 15px;
  }
  
  /* Contact Section */
  .contact-info {
    order: 4;
    text-align: center;
  }
  
  .footer-section h4 {
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
  }
  
  .footer-section:not(.company-info):not(.footer-markets-mobile) {
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a {
    font-size: 14px;
    padding: 6px 0;
    display: inline-block;
    margin: 0 2px;
  }
  
  .footer-links a:hover {
    padding-left: 0;
    color: var(--primary);
  }
  
  .contact-info .contact-item {
    justify-content: center;
    margin-bottom: 10px;
    font-size: 14px;
    flex-wrap: wrap;
  }
  
  .contact-item svg {
    margin-right: 8px;
  }
  
  .footer-bottom {
    padding: 15px 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-legal {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-legal a {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(139, 195, 74, 0.1);
    margin: 2px;
    transition: all 0.3s ease;
  }
  
  .footer-legal a:hover {
    background: rgba(139, 195, 74, 0.2);
  }
  
  .copyright {
    font-size: 12px;
    line-height: 1.4;
  }
}


/* Tablet Footer Layout */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-main {
    padding: 50px 0 35px;
  }
  
  .company-info {
    grid-column: 1 / 2;
    text-align: left;
  }
  
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) {
    text-align: center;
  }
  
  .contact-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 195, 74, 0.2);
  }
  
  .contact-info .contact-item {
    justify-content: center;
    margin: 0 20px 15px;
    display: inline-flex;
  }
}

/* Standard Mobile Footer (768px and below) - 4 columns stack */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 30px;
    text-align: center;
  }
  
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-section {
    padding: 0 10px;
  }
  
  .company-description {
    max-width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--white);
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    font-size: 14px;
  }
  
  .company-info .footer-brand {
    justify-content: center;
  }
  
  .social-links-footer {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  /* Hide collapsible functionality on regular mobile */
  .footer-markets-mobile .toggle-icon {
    display: none;
  }
  
  .footer-markets-mobile h4 {
    cursor: default;
    border-bottom: none;
    padding: 0;
  }
  
  .footer-markets-mobile .collapsible-content {
    max-height: none;
    overflow: visible;
    margin-top: 15px;
  }
}

/* Hide topbar on mobile devices for cleaner mobile UX */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ===== BLOG STYLES ===== */

/* Blog Header Section */
.blog-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.blog-header .section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #234e1d;
  margin-bottom: 20px;
}

.blog-header .sub {
  font-size: 1.3rem;
  color: #557c4f;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Blog Section */
.featured-blog {
  padding: 80px 0;
  background: #fff;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(35, 78, 29, 0.1);
  overflow: hidden;
  position: relative;
}

.featured-blog-image {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 16px 0 0 16px;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-blog-card:hover .featured-blog-image img {
  transform: scale(1.05);
}

.featured-blog-content {
  padding: 40px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.featured-meta .category {
  background: linear-gradient(45deg, #234e1d, #2e6829);
  color: white;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-blog-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #234e1d;
  line-height: 1.2;
  margin-bottom: 20px;
}

.featured-blog-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: #888;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #234e1d, #2e6829);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(35, 78, 29, 0.3);
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(35, 78, 29, 0.4);
  background: linear-gradient(45deg, #2e6829, #234e1d);
}

.read-more-btn svg {
  transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
  transform: translateX(4px);
}

/* Blog Filters Section */
.blog-filters {
  padding: 60px 0;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #666;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn:hover {
  border-color: #234e1d;
  color: #234e1d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(35, 78, 29, 0.1);
}

.filter-btn.is-checked {
  background: linear-gradient(45deg, #234e1d, #2e6829);
  border-color: #234e1d;
  color: white;
  box-shadow: 0 4px 15px rgba(35, 78, 29, 0.3);
}

/* Blog Posts Grid */
.blog-posts {
  padding: 80px 0;
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(35, 78, 29, 0.15);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(35, 78, 29, 0.8), rgba(46, 104, 41, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.category-tag {
  background: white;
  color: #234e1d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 30px;
}

.blog-card-content .blog-meta {
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
}

.blog-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #234e1d;
  line-height: 1.3;
  margin-bottom: 15px;
  text-align: left !important;
}

.blog-card-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #234e1d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #2e6829;
  gap: 12px;
}

.read-more svg {
  transition: transform 0.3s ease;
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* Load More Button */
.load-more-container {
  text-align: center;
}

/* Article Navigation */
.article-nav {
  background: #f8f9fa;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.article-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #234e1d;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator svg {
  color: #ccc;
}

.breadcrumb .current {
  color: #666;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #666;
}

.share-btn {
  background: white;
  border: 1px solid #e9ecef;
  color: #666;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-btn:hover {
  background: #234e1d;
  color: white;
  transform: translateY(-2px);
}

/* Blog Article */
.blog-article {
  padding: 60px 0 80px;
  background: white;
}

.blog-article .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  max-width: 1200px;
}

/* Full-width article container */
.article-full-width {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 80px;
}

.article-wrapper {
  max-width: none;
  width: 100%;
}

/* Article Header */
.article-header {
  margin-bottom: 40px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.article-meta .category {
  background: linear-gradient(45deg, #234e1d, #2e6829);
  color: white;
  padding: 6px 16px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-meta .publish-date,
.article-meta .read-time {
  color: #888;
}

.article-title {
  font-size: 3rem;
  font-weight: 800;
  color: #234e1d;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: left !important;
}

.article-excerpt {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

/* Featured Image */
.featured-image {
  margin-bottom: 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Article Content */
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 50px;
}

.article-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #234e1d;
  margin: 40px 0 20px;
  text-align: left !important;
}

.article-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #234e1d;
  margin: 30px 0 15px;
  text-align: left !important;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #234e1d;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* Article Footer */
.article-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 30px;
}

.tags {
  margin-bottom: 30px;
}

.tag {
  background: #f8f9fa;
  color: #234e1d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 5px 10px 5px 0;
  display: inline-block;
  border: 1px solid #e9ecef;
}

.share-section h4 {
  color: #234e1d;
  margin-bottom: 15px;
  text-align: left !important;
}

.share-buttons-expanded {
  display: flex;
  gap: 15px;
}

.share-btn-expanded {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid #e9ecef;
  color: #666;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.share-btn-expanded:hover {
  background: #234e1d;
  border-color: #234e1d;
  color: white;
  transform: translateY(-2px);
}

/* Related Articles Sidebar */
.related-articles {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.related-articles h3 {
  color: #234e1d;
  margin-bottom: 25px;
  text-align: left !important;
}

.related-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.related-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-image {
  overflow: hidden;
  border-radius: 8px;
}

.related-image img {
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.related-content h4 {
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 8px;
  text-align: left !important;
}

.related-content h4 a {
  color: #234e1d;
  text-decoration: none;
}

.related-content h4 a:hover {
  text-decoration: underline;
}

.related-category {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 5px;
}

.related-content time {
  font-size: 0.8rem;
  color: #999;
}

/* Related Articles Mobile Section */
.related-section-mobile {
  display: none;
  padding: 60px 0;
  background: #f8f9fa;
}

.related-section-mobile h3 {
  text-align: center;
  color: #234e1d;
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #234e1d, #2e6829);
  color: white;
  text-align: center;
}

.newsletter-content h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form .form-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .cta-btn {
  background: #ff6b35;
  border: none;
  padding: 15px 25px;
  margin: 0;
  border-radius: 0;
  font-weight: 600;
}

.newsletter-form .cta-btn:hover {
  background: #e55a2e;
}

.success-message {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .blog-article .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .related-articles {
    display: none;
  }
  
  .related-section-mobile {
    display: block;
  }
  
  .featured-blog-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .featured-blog-image {
    height: 300px;
    border-radius: 16px 16px 0 0;
  }
  
  .featured-blog-content {
    padding: 30px;
  }
  
  .featured-blog-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-header {
    padding: 60px 0 40px;
  }
  
  .blog-header .section-title {
    font-size: 2.5rem;
  }
  
  .blog-header .sub {
    font-size: 1.1rem;
  }
  
  .featured-blog {
    padding: 60px 0;
  }
  
  .featured-blog-card {
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(35, 78, 29, 0.1);
  }
  
  .featured-blog-content {
    padding: 25px;
  }
  
  .featured-blog-content h2 {
    font-size: 1.6rem;
  }
  
  .blog-filters {
    padding: 40px 0;
  }
  
  .filter-buttons {
    padding: 0 20px;
  }
  
  .filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .blog-posts {
    padding: 60px 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .blog-card {
    max-width: 100%;
  }
  
  .article-nav .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .share-buttons {
    justify-content: center;
  }
  
  .blog-article {
    padding: 40px 0 60px;
  }
  
  .blog-article .container {
    padding: 0 20px;
  }
  
  /* Full-width article mobile styles */
  .article-full-width {
    padding: 0 40px;
  }
  
  .article-title {
    font-size: 2.2rem;
  }
  
  .featured-image img {
    height: 250px;
  }
  
  .article-content {
    font-size: 1rem;
  }
  
  .article-content h2 {
    font-size: 1.8rem;
  }
  
  .article-content h3 {
    font-size: 1.5rem;
  }
  
  .share-buttons-expanded {
    flex-direction: column;
    gap: 10px;
  }
  
  .share-btn-expanded {
    justify-content: center;
    width: 100%;
  }
  
  .newsletter-section {
    padding: 60px 20px;
  }
  
  .newsletter-content h3 {
    font-size: 2rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    max-width: 100%;
  }
  
  .newsletter-form input {
    border-radius: 8px 8px 0 0;
  }
  
  .newsletter-form .cta-btn {
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 480px) {
  .blog-header .section-title {
    font-size: 2rem;
  }
  
  .featured-blog-content h2 {
    font-size: 1.4rem;
  }
  
  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-card-content h3 {
    font-size: 1.2rem;
  }
  
  .article-title {
    font-size: 1.8rem;
  }
  
  .article-content h2 {
    font-size: 1.5rem;
  }
  
  .newsletter-content h3 {
    font-size: 1.6rem;
  }
  
  /* Full-width article very small screens */
  .article-full-width {
    padding: 0 25px;
  }
}

/* Article not found styles */
.article-not-found {
  text-align: center;
  padding: 100px 20px;
}

.article-not-found h1 {
  font-size: 3rem;
  color: #234e1d;
  margin-bottom: 20px;
}

.article-not-found p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}
