:root {
  --primary-color: #3d542a; /* Deep green similar to Foton */
  --secondary-color: #6e8a3a; /* Light olive green */
  --background-color: #fafafa;
  --dark-bg: #223122;
  --text-color: #333;
  --light-text: #f5f5f5;
  --border-radius: 12px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', 'Cairo', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav .logo img {
  height: 50px;
}
nav .logo span {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: var(--secondary-color);
}
.language-switch {
  margin-left: 20px;
}
.language-switch a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}
/* Hero */
.hero {
  position: relative;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 86, 42, 0.7);
  /* overlay with green tint */
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero-content .btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  padding: 12px 24px;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--primary-color);
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background-color: #fff;
  color: var(--primary-color);
}
/* Section Containers */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
}
section h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}
/* About section */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.about .about-image {
  flex: 1 1 40%;
}
.about .about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.about .about-content {
  flex: 1 1 50%;
}
.about .about-content p {
  margin-bottom: 15px;
  font-size: 1rem;
}
.about .features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.about .feature {
  flex: 1 1 calc(50% - 15px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--border-radius);
  background-color: #f4f8f2;
}
.about .feature-icon {
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
/* Services section */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.services .service {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 20px;
  flex: 1 1 calc(33% - 40px);
  min-width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services .service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.services .service-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}
.services .service h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--primary-color);
}
.services .service p {
  font-size: 0.95rem;
  color: #555;
}
/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Contact section */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.contact-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 20px;
  flex: 1 1 calc(33% - 40px);
  min-width: 250px;
  text-align: center;
}
.contact-card .card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}
.contact-card p {
  font-size: 0.95rem;
  color: #555;
}
/* Footer */
footer {
  position: relative;
  background-image: url('images/warehouse2.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 86, 42, 0.8);
  z-index: 0;
}
footer .footer-content {
  position: relative;
  z-index: 1;
}
footer .footer-nav {
  margin-bottom: 20px;
}
footer .footer-nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}
footer .footer-nav a:hover {
  text-decoration: underline;
}
footer p {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }
  .about .feature {
    flex: 1 1 100%;
  }
  .services .service {
    flex: 1 1 100%;
  }
  .contact-card {
    flex: 1 1 100%;
  }
}
