@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --green-dark: #054534;
  --green-medium: #0a5e48;
  --green-light: #0d7a5e;
  --gold: #c9a859;
  --gold-light: #d4bc7a;
  --gold-dark: #a88b3e;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-light: #e8e4dc;
  --gray: #9a9590;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --shadow-sm: 0 2px 8px rgba(5, 69, 52, 0.08);
  --shadow-md: 0 4px 20px rgba(5, 69, 52, 0.12);
  --shadow-lg: 0 8px 40px rgba(5, 69, 52, 0.16);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', 'Noto Naskh Arabic', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1005;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 69, 52, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  
  
  
  
}

.logo img {
  height: 120px;
  width: auto;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: rgba(5, 69, 52, 0.05);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 20px;
  left: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1003;
  
  
  
  
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, #053d2e 50%, #043526 100%);
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 89, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 89, 0.08) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a859' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: slideInRight 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 89, 0.15);
  border: 1px solid rgba(201, 168, 89, 0.25);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '✦';
  font-size: 0.7rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
  display: inline;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-logo-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(201, 168, 89, 0.15) 30%, rgba(255,255,255,0.04) 55%, transparent 70%);
  border-radius: 50%;
}

.hero-logo-wrapper::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 89, 0.4);
  animation: float 4s ease-in-out infinite;
}

.hero-logo-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 89, 0.22);
  animation: float 4s ease-in-out infinite 0.5s;
}

.hero-logo-wrapper img {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201, 168, 89, 0.35)) drop-shadow(0 0 80px rgba(201, 168, 89, 0.15)) brightness(1.3);
  animation: float 5s ease-in-out infinite;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 89, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-dark);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Section Styles ===== */
.section {
  padding: 100px 0;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Features Section ===== */
.features {
  background: var(--off-white);
}

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

.feature-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 89, 0.2);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  border-radius: 16px;
  font-size: 1.8rem;
  color: var(--white);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 89, 0.2);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Categories Section ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}

.category-card .category-bg {
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

.category-card:hover .category-bg {
  transform: scale(1.08);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.category-content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 32px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.category-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.category-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.category-arrow {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--white);
}

.category-card:hover .category-arrow {
  background: var(--gold);
  color: var(--green-dark);
  transform: rotate(-45deg);
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 50%;
  filter: brightness(0) invert(1);
  opacity: 0.15;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(5, 69, 52, 0.95), transparent);
}

.about-stat {
  display: flex;
  gap: 32px;
}

.about-stat-item {
  text-align: center;
}

.about-stat-item .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.about-stat-item .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--green-dark);
}

.about-feature-item::before {
  content: '✓';
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 69, 52, 0.08);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== Products Grid ===== */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1.5px solid var(--gray-light);
  border-radius: 50px;
  background: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

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

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-image {
  aspect-ratio: 3/4;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder {
  font-size: 3rem;
  opacity: 0.3;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.product-wishlist:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
}

.product-price .currency {
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 2px;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), #053d2e);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a859' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--gray-light);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 89, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 168, 89, 0.3);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  border-radius: 12px;
  font-size: 1.3rem;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.contact-card a {
  color: var(--gold-dark);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--green-dark);
}

.contact-map {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  aspect-ratio: 16/9;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-right: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}

.footer-contact-item span:first-child {
  min-width: 18px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
}

/* ===== Page Banner ===== */
.page-banner {
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-dark), #053d2e);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a859' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== About Page ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 168, 89, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 69, 52, 0.06);
  border-radius: 50%;
  font-size: 1.6rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  width: 2px;
  height: 100%;
  background: var(--gray-light);
  transform: translateX(50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-content {
  width: 45%;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-light);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 55%;
  text-align: left;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ===== Brands / Logos Marquee ===== */
.brands-section {
  background: var(--off-white);
  padding: 48px 0;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-item {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray);
  opacity: 0.3;
  white-space: nowrap;
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .header .container { height: 90px; }
  
  .logo img { height: 80px; }
  
  
  .mobile-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1002;
    margin: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1001;
  }

  .nav-overlay.open {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }

  .hero-logo-wrapper {
    width: 240px;
    height: 240px;
  }

  .hero-logo-wrapper img { width: 150px; }

  .categories-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-brand img {
    margin: 0 auto 10px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer h4 { margin-bottom: 10px; padding-bottom: 8px; }
  .footer h4::after { right: auto; left: auto; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .page-banner h1 { font-size: 2rem; }
  .page-banner { min-height: 260px; }

  .timeline::before { right: 20px; }
  .timeline-dot { right: 20px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 50px);
    margin-right: 0;
    margin-left: auto;
    text-align: right;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ===== Loading Overlay ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  animation: float 2s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

/* ===== Language Switcher ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--gray-light);
  flex-shrink: 0;
}

.lang-switch a {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-switch a.active-lang {
  background: var(--green-dark);
  color: var(--white);
}

.lang-switch a:not(.active-lang):hover {
  background: rgba(5, 69, 52, 0.06);
}

/* ===== LTR Support ===== */
body.ltr {
  direction: ltr;
  text-align: left;
}

body.ltr .nav-links a.active::after {
  right: auto;
  left: 20px;
}

body.ltr .footer h4::after {
  right: auto;
  left: 0;
}

body.ltr .footer-links a:hover {
  padding-right: 0;
  padding-left: 6px;
}

body.ltr .footer-contact-item {
  flex-direction: row;
}

body.ltr .about-feature-item::before {
  order: -1;
}

body.ltr .breadcrumb {
  direction: ltr;
}

body.ltr .category-arrow {
  left: auto;
  right: 24px;
  transform: none;
}

body.ltr .category-card:hover .category-arrow {
  transform: rotate(45deg);
}

body.ltr .contact-card {
  flex-direction: row;
}

@media (max-width: 768px) {
  .lang-switch {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .lang-switch a {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}
