:root {
  --primary: #f7941e;
  --dark: #333;
  --light: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav a {
  margin: 0 1rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.social a {
  margin: 0 0.5rem;
  color: var(--dark);
  font-size: 1.2rem;
}

.logo img {
  height: 60px;
}

.hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  background: rgba(0,0,0,0.4);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2rem 0;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}

.card img {
  width: 100%;
  height: auto;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  margin: 2rem 0;
}

.step img {
  width: 80px;
  margin-bottom: 1rem;
}

.testi-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 2rem 0;
}

.testi-grid blockquote {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  font-style: italic;
}

.testi-grid blockquote::before {
  content: '“';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  top: 10px;
  left: 10px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2rem 0;
}

.features-grid div {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-box {
  background: #fff;
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-box i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 0.5rem;
}

.footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.footer-social a {
  margin: 0 0.5rem;
  color: #fff;
  font-size: 1.2rem;
}

.footer p {
  margin: 0.5rem 0;
}

/* ======= إعدادات قسم التراث والجودة ======= */
.features-grid-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.feature-item {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.img-side img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.text-side h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .features-grid-2cols {
    grid-template-columns: 1fr;
  }
  .features-grid-2cols .feature-item:nth-child(even) {
    order: -1;
  }
}

/* ===== Creative Hero ===== */
.hero-creative {
  position: relative;
  overflow: hidden;
}
.hero-creative .hero-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-creative .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.hero-creative .hero-circle {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-creative .hero-text {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.hero-creative .hero-text h1 {
  font-size: 3rem;
  color: var(--dark);
}
.hero-creative .hero-text p {
  font-size: 1.2rem;
  color: var(--dark);
}
.hero-creative .hero-social {
  position: relative;
  margin-top: 1rem;
}
.hero-creative .hero-social a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 0.5rem;
  border-radius: 50%;
}

/* ===== Products Cards ===== */
.products .card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.products .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== Features Tilt ===== */
.features-grid-2cols .feature-item {
  transition: transform 0.3s;
}
.features-grid-2cols .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Creative Hero Styles */
.hero-creative {
  position: relative;
  overflow: hidden;
}
.hero-creative .hero-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  filter: brightness(0.6);
}
.hero-creative .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.hero-creative .hero-circle {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: lighten;
}
.hero-creative .hero-text {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.hero-creative .hero-text h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.hero-creative .hero-text p {
  font-size: 1.2rem;
  color: var(--dark);
}
.hero-creative .hero-social {
  position: relative;
  margin-top: 1rem;
}
.hero-creative .hero-social a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 0.5rem;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.hero-creative .hero-social a:hover {
  transform: scale(1.1);
}
