/* Base Styles */
:root {
  --primary-color: #2E7D32;
  --primary-dark: #1B5E20;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  border: none;
  outline: none;
}

.btn:hover {
  background-color: var(--primary-dark);
}

/* Header Styles */
.header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo h1 {
  margin-left: 0.75rem;
  font-size: 1.5rem;
  color: var(--text-color);
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  color: var(--text-color);
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background-color: var(--bg-white);
  padding: 1rem 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 20px;
}

.mobile-nav a {
  display: block;
  color: var(--text-color);
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-right: 1rem;
  position: relative;
  z-index: 10;
}
.order_via_whatsapp {
  background-color: rgba(37, 36, 36, 0.705);
  color: #ffff;
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  margin-top: 1rem;
  width: 350px;
  align-self: flex-start;
  margin-left: 2rem;
}

.order_via_whatsapp span {
  margin-bottom: 0.5rem;
  display: block;
}

.order_via_whatsapp i {
  color: #25D366;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  align-self: center;
}

.order_via_whatsapp a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 1.4rem;
}

.order_via_whatsapp a:hover {
  color: #25D366;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .hero-container {
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .order_via_whatsapp {
    flex: 0 0 350px;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content {
    margin-right: 0;
    text-align: center;
  }
  
  .order_via_whatsapp {
    width: 100%;
    max-width: 350px;
    margin: 2rem auto 0;
    text-align: center;
  }
}



.hero {
  position: relative;
  background-color: #1a1a1a;
  color: var(--text-white);
  min-height: 80vh;
  display: flex;
  align-items: center;
  /*background-image: url('https://images.unsplash.com/photo-1517466787929-bc90951d0974?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
  */
  background-image:url('./images/Jukskei_Banner_01.webp');
  background-size: cover;
  background-position:  center; /*center or bottom or center-left*/
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.why-choose-us {
  margin-top: 2rem;
}

.why-choose-us h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.why-choose-us ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-choose-us li {
  display: flex;
  align-items: flex-start;
}

.check-mark {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Products Section */
.products {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.category-tabs {
  display: none;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-container {
  display: inline-flex;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--bg-white);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-btn:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.tab-btn:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.category-dropdown {
  margin-bottom: 2rem;
}

#category-select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-color);
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: var(--bg-white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  /*height: 240px; */
  overflow: hidden;
  background-color: #cdcdd1;
}

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

.product-details {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.product-specs {
  margin-bottom: 1rem;
}

.specs-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.specs-list {
  font-size: 0.875rem;
  color: var(--text-light);
}

.specs-list li {
  margin-bottom: 0.25rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.product-btn {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Specifications Section */
.specifications {
  padding: 4rem 0;
  background-color: var(--bg-white);
}

.specs-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.specs-table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.specs-table th {
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
  text-align: left;
  padding: 15px;
  font-size: 1rem;
}

.specs-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.specs-table th:first-child,
.specs-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.specs-table th:not(:first-child),
.specs-table td:not(:first-child) {
  text-align: center;
}

.specs-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.compliant {
  color: var(--primary-color);
  font-weight: 600;
}

.specs-summary {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(46, 125, 50, 0.05);
  border-left: 4px solid var(--primary-color);
}

.specs-summary p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  /*background-color: #f3f7f3; */
    /*background-color: var(--bg-white); */
  background-color: var(--bg-light);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-card, .form-card {
  background-color: var(--bg-light);
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.info-card h3, .form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.info-item h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.map-container {
  margin-top: 2rem;
}

.map-container h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.map {
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #e0e0e0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
  outline: none;
}

.submit-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: var(--text-white);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-circle-small {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.footer-logo h3 {
  margin-left: 0.75rem;
  font-size: 1.25rem;
}

.footer-company p {
  color: #a0a0a0;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #a0a0a0;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--text-white);
}

.footer h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #a0a0a0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  color: #a0a0a0;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.copyright {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.copyright p {
  color: #777;
}

/* Media Queries */
@media (min-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-content {
    flex-direction: row;
  }
  
  .about-image {
    width: 50%;
  }
  
  .about-text {
    width: 50%;
  }
  
  .desktop-nav {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .category-tabs {
    display: flex;
  }
  
  .category-dropdown {
    display: none;
  }
  
  .contact-content {
    flex-direction: row;
	justify-content: center;
  }
  
  .contact-info,
  .contact-form {
    width: 50%;
  }

  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  .footerUrl{
	  color:#ffa518;
  }
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .specs-table th,
  .specs-table td {
    padding: 18px;
  }
}