:root {
  --color-primary: #6e3f20;
  --color-secondary: #d7b24a;
  --color-accent: #263611;
  --color-light: #efe6d5;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-background: #f9f9f9;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* Base Styles & CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", "Tahoma", sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Sections Common Styles */
.section {
  padding: 60px 0;
  width: 100%;
}

/* Hero Section */
.hero {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%236e3f20" opacity="0.4"/><path d="M0 0L100 100" stroke="%236e3f20" stroke-width="2"/><path d="M100 0L0 100" stroke="%236e3f20" stroke-width="2"/></svg>'),
    linear-gradient(rgba(110, 63, 32, 0.5), rgba(110, 63, 32, 0.5));
  background-color: #6e3f20;
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  text-align: left;
  color: #d7b24a;
  position: relative;
}

.hero-content {
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 20px;
}

/* Tagline Strip */
/* .tagline {
        background-color: #263611;
        padding: 14px 0;
        text-align: center;
      }

      .tagline h3 {
        color: #d7b24a;
        font-size: 1.9rem;
        font-weight: 700;
      } */

/* About Section */
.about {
  background-color: #f8f4ec;
  padding: 60px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  color: #6e3f20;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  background: linear-gradient(45deg, #6e3f20, #d7b24a);
  height: 400px;
  max-width: 400px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-image img {
  width: 100%;
  height: 100%;
}

/* Products Grid */
.products {
  background-color: #fff;
  padding: 40px 0;
}

.section-title {
  text-align: center;
  color: #6e3f20;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.product-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.product-img {
  width: 100%;
  height: 250px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e3f20;
  font-size: 1.5rem;
  font-weight: 700;
}

.product-img img {
  width: 100%;
  height: 100%;
}

.product-label {
  background: #efe6d5;
  color: #1e1e1e;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Services Section */
.services {
  background-color: #6e3f20;
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-item {
  text-align: center;
  color: #d7b24a;
  padding: 25px 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  background-color: #f8f4ec;
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.testimonial-author {
  font-weight: 700;
  color: #6e3f20;
}

/* CTA Section */
.cta {
  background-color: #263611;
  padding: 40px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
}

.cta-text {
  color: #d7b24a;
  padding-right: 20px;
  text-align: right;
}

.cta-text p {
  font-size: 1.4rem;
  font-weight: 600;
}

.cta-button {
  text-align: center;
}

.btn {
  background-color: #d7b24a;
  color: #6e3f20;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #d7b24a;
}

.btn:hover {
  background-color: transparent;
  color: #d7b24a;
}

/* Contact Section */
.contact {
  background-color: #efe6d5;
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  color: #6e3f20;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #d7b24a;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #6e3f20;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

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

/* Responsive Styles */
@media (max-width: 992px) {

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    min-height: 350px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

/* LTR Specific Styles */
html[dir="ltr"] .product-item,
html[dir="ltr"] .service-item {
  text-align: center;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 1s ease-out forwards;
}