/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "DM Sans", "Albert Sans", "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 90%;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.315);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  background: #1a5a1a;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9rem;
  width: 7rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #1a5a1a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2d8f2d;
}

.contact-primary {
  background: #1a5a1a;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
}

.menu-toggle {
  display: none;
  background: #1a5a1a;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.lang-btn {
  background: #1a5a1a;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  min-width: 50px;
}

.lang-btn:hover {
  background: #1a5a1a;
  transform: translateY(-1px);
}

.lang-btn:active {
  transform: translateY(0);
}

/* Google Translate Styles */
#google_translate_element {
  display: none !important;
}

.goog-te-banner-frame,
.goog-te-gadget-icon {
  display: none !important;
}

body {
  top: 0px !important;
}

/* RTL Support for Arabic */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] * {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

html[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu {
  flex-direction: row-reverse;
}

html[dir="rtl"] .language-switcher {
  margin-left: 0;
  margin-right: 1rem;
}

html[dir="rtl"] .hero-content {
  flex-direction: row-reverse;
}

html[dir="rtl"] .section-content {
  flex-direction: row-reverse;
}

html[dir="rtl"] .section-content.reverse {
  flex-direction: row;
}

/* Force LTR for specific content like phone numbers and emails */
.ltr-text {
  direction: ltr;
  display: inline-block;
  text-align: left;
}

/* RTL Mobile Fixes */
@media (max-width: 768px) {
  html[dir="rtl"] .hero-content {
    flex-direction: column;
  }

  html[dir="rtl"] .section-content {
    flex-direction: column;
  }

  html[dir="rtl"] .section-content.reverse {
    flex-direction: column;
  }

  html[dir="rtl"] .nav {
    flex-direction: row;
  }

  html[dir="rtl"] .nav-menu {
    flex-direction: column;
  }

  html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
  }

  html[dir="rtl"] .service-content {
    flex-direction: column;
  }

  html[dir="rtl"] .quality-content {
    flex-direction: column;
  }

  html[dir="rtl"] .trusted-logos {
    flex-direction: row;
    flex-wrap: wrap;
  }

  html[dir="rtl"] .container {
    width: 90%;
    max-width: 100%;
    overflow-x: hidden;
  }

  html[dir="rtl"] body {
    overflow-x: hidden;
  }

  html[dir="rtl"] .hero-section {
    overflow-x: hidden;
  }

  /* Arabic text formatting */
  html[dir="rtl"] strong {
    font-weight: 800;
    color: #b8860b;
  }

  /* Quality section Arabic styling */
  html[dir="rtl"] .quality-text p strong {
    font-weight: 900;
    color: #b8860b;
    font-size: 1.1em;
    display: block;
    margin-bottom: 0.5rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: white;
  overflow: hidden;
  padding-top: 80px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 80px);
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

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

.brand-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 2px;
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-text h1 span[style*="color: rgb(35, 157, 35)"] {
  color: #1a5a1a !important;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 500px;
}

.btn-primary {
  display: inline-block;
  background-color: #1a5a1a;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #0f3d0f;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.vegetable-basket {
  position: relative;
  z-index: 3;
}

.vegetables-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Green ribbon background */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%; /* Default for English */
  background: #ffffff; /* Keep original for hero */
  z-index: 1;
}

/* Arabic language specific height */
html[dir="rtl"] .hero-section::after {
  height: 46%;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  height: 100%;
  background: #c8e6c9; /* Keep original for hero */
  z-index: 1;
}
/* About Section */
.about {
  padding: 80px 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #c8e6c9;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.section-white {
  background: white;
}

.section-gray {
  background: white;
}

.section-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: auto;
  align-self: center;
}

.section-content.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a5a1a;
  margin-bottom: 30px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.green-block {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

/* About Section Specific Styling */
.about .section-content {
  border-radius: 20px;
  padding: 60px;
  width: 100%;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.about .text-content h2 {
  color: #1a5a1a;
  margin-bottom: 20px;
}

.about .text-content p {
  color: #333;
}

/* Company History Section */
.company-history {
  padding: 80px 0;
  position: relative;
}

.company-history::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #d4f4d6; /* Different shade for company history */
}

.company-history .section-content {
  border-radius: 20px;
  padding: 60px;
  width: 100%;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Services Section (keeping existing structure) */
.services {
  position: relative;
  padding: 80px 0;
}
.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #d4f4d6; /* Different shade for company history */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}
.services .section-content {
  border-radius: 20px;
  padding: 60px;
  width: 100%;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.tab-switcher-services {
  flex: 0.3;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: 2px solid #1a5a1a;
  color: #1a5a1a;
  padding: 15px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: left;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tab-btn.active,
.tab-btn:hover {
  background: #1a5a1a;
  color: white;
  outline: none;
}

.tab-content {
  flex: 1;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.service-content .green-block {
  width: 100%;
  max-width: 300px;
  min-width: 300px;
  height: 200px;
  border-radius: 15px;
  object-fit: cover;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
  flex-shrink: 0;
}
.service-text h3 {
  font-size: 1.5rem;
  color: #1a5a1a;
  margin-bottom: 15px;
}

.service-text p {
  color: #666;
  line-height: 1.7;
}

.green-block.small {
  max-width: 250px;
}

/* Clients Section */
.clients {
  padding: 80px 0;
  background: #c8e6c9;
}

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

.section-header h2 {
  display: inline-block;
  background: #1a5a1a;
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 2rem;
  font-weight: 600;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.client-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.client-card h3 {
  font-size: 1.2rem;
  color: #1a5a1a;
  margin-bottom: 15px;
  font-weight: 600;
}

.client-card p {
  background: #1a5a1a;
  color: white;
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Trusted By Section */
.trusted-by {
  padding: 80px 0;
  background: #f8f9fa;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  margin-top: -50px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
  min-height: 100px;
  min-width: 150px;
  border: 2px solid #e8f5e8;
}

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

.logo-item img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

/* Quality Section */
.quality {
  padding: 50px 0;
  padding-bottom: 0px;
}

.quality-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.quality-text {
  flex: 1;
}

.quality-text h2 {
  display: inline-block;
  background: #1a5a1a;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.quality-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #1a5a1a;
  font-weight: 500;
}

.quality-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quality-images-row {
  display: flex;
  gap: 15px;
}

.quality-image {
  flex: 1;
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #c8e6c9;
}

.contact .section-content {
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  display: inline-block;
  background: #1a5a1a;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-details {
  background: #1a5a1a;
  color: white;
  padding: 30px;
  border-radius: 15px;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-image iframe {
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  height: 300px;
}

/* Footer */
.footer {
  background: #1a5a1a;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
}

/* Products Page Styles */
.products-section {
  padding: 120px 0 80px 0;
  background: #f8f9fa;
  min-height: 100vh;
}

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

.products-title {
  background: #1a5a1a;
  color: white;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  background: #c8e6c9;
  border-radius: 50px;
  padding: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.product-tab {
  flex: 1;
  padding: 15px 30px;
  border: none;
  background: transparent;
  color: #555;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.product-tab.active {
  background: #1a5a1a;
  color: white;
  transform: scale(1.02);
}

.product-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

/* Products Grid */
.products-grid {
  position: relative;
  min-height: 600px;
}

.products-grid .tab-content {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px 0;
}

.products-grid .tab-content.active {
  display: grid;
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #c8e6c9;
}

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

.product-image {
  height: 150px;
  background: #f0f8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
}

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

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

.product-info {
  padding: 20px;
  text-align: center;
  background: white;
}

.product-info h3 {
  color: #1a5a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.product-origin {
  background: #e8f5e8;
  color: #1a5a1a;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #c8e6c9;
}

/* Active nav link */
.nav-menu a.active {
  color: #1a5a1a;
  font-weight: 600;
}

/* Footer for products page */
.footer-content {
  text-align: center;
}

.footer-content p {
  color: white;
  margin: 0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-section {
    padding: 100px 0 60px 0;
  }

  .products-grid .tab-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .hero-content {
    gap: 40px;
  }

  .section-content {
    gap: 40px;
  }

  .about .section-content,
  .company-history .section-content {
    padding: 40px;
  }

  .trusted-logos {
    gap: 40px;
  }

  .logo-item {
    min-width: 130px;
    min-height: 90px;
  }

  .logo-item img {
    max-width: 110px;
    max-height: 55px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .logo {
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    width: 5rem;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(255, 255, 255);
  }

  .nav-menu.active {
    display: flex;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
  }

  .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-width: 45px;
  }

  /* Mobile overflow prevention */
  .container {
    width: 90%;
    max-width: 100%;
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  .hero-section,
  .about,
  .company-history,
  .services,
  .clients,
  .quality,
  .contact {
    overflow-x: hidden;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .hero-section {
    height: min-content;
    padding-bottom: 0px;
    height: 20px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-container {
    margin-bottom: 0px;
    padding-bottom: 0px;
    height: max-content;
  }
  .hero-content {
    padding-bottom: 0px;
    margin-bottom: 0px;
    height: min-content;
  }
  .hero-text p {
    height: max-content;
    padding-bottom: 0px;
  }

  .hero-image {
    order: -1;
    padding: 0px;
    margin: 0px;
    width: 100%;
  }

  .vegetables-img {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
  }

  .hero-section::before {
    height: 70%;
  }

  .section-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .section-content.reverse {
    flex-direction: column;
  }

  .text-content h2 {
    font-size: 2.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .text-content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about .section-content,
  .company-history .section-content {
    padding: 30px;
    margin: 0 0px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trusted-logos {
    gap: 30px;
    padding: 20px 0;
  }

  .logo-item {
    min-width: 120px;
    min-height: 80px;
    padding: 15px;
  }

  .logo-item img {
    max-width: 100px;
    max-height: 50px;
  }

  .quality-content {
    flex-direction: column;
    gap: 30px;
  }

  .tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-content {
    flex-direction: column;
    text-align: center;
  }

  .contact .section-content {
    flex-direction: column;
    gap: 30px;
  }

  /* Products page mobile styles */
  .products-section {
    padding: 100px 0 60px 0;
  }

  .products-title {
    font-size: 1.4rem;
    padding: 12px 30px;
  }

  .product-tabs {
    flex-direction: column;
    max-width: 300px;
    gap: 5px;
    border-radius: 20px;
  }

  .product-tab {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 15px;
  }

  .products-grid .tab-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-card {
    border-radius: 15px;
  }

  .product-info {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(255, 255, 255);
  }

  .nav-menu.active {
    display: flex;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
  }
  .hero-section {
    min-height: auto;
    height: auto;
    padding: 60px 0 20px 0;
  }

  .hero-container {
    margin-bottom: 0;
    padding-bottom: 0;
    height: auto;
  }

  .hero-content {
    padding-bottom: 0;
    margin-bottom: 0;
    height: auto;
    min-height: auto;
    gap: 20px;
  }

  .hero-text {
    padding: 20px 0;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-text p {
    height: auto;
    margin-bottom: 20px;
  }

  .hero-image {
    order: -1;
    padding: 0;
    margin: 0;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }

  .vegetables-img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }

  .hero-section::before {
    height: 50%;
    top: 50%;
  }

  .container {
    padding: 0 15px;
  }
  .header {
    background-color: rgb(255, 255, 255);
  }
  .btn-primary {
    padding: 12px 25px;
    font-size: 0.85rem;
  }

  /* Reduce section padding to eliminate gaps */
  .about,
  .company-history,
  .services,
  .clients,
  .quality,
  .contact {
    padding: 40px 0;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .about .section-content,
  .company-history .section-content,
  .services .section-content {
    padding: 20px;
    margin: 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
    padding: 12px 25px;
  }

  .quality-text h2 {
    font-size: 1.2rem;
    padding: 12px 20px;
  }

  .quality-images {
    align-self: center;
  }

  .trusted-logos {
    gap: 20px;
    padding: 15px 0;
  }

  .logo-item {
    min-width: 100px;
    min-height: 70px;
    padding: 10px;
  }

  .logo-item img {
    max-width: 80px;
    max-height: 40px;
  }

  .contact-info h2 {
    font-size: 1.2rem;
    padding: 12px 20px;
  }

  .tabs {
    flex-direction: column;
    padding-bottom: 0;
    margin-bottom: 0px;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .tab-switcher-services {
    margin-bottom: 0px;
    height: max-content;
    padding-bottom: 0px;
  }
  .company-history .text-content {
    text-align: left;
  }

  .company-history p {
    font-size: 1rem;
    color: #666;
    padding-bottom: 10px;
  }

  /* Products page smallest mobile styles */
  .products-grid .tab-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-image {
    height: 120px;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .product-origin {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
}
