:root {
  /* Light Mode Base Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(20, 14.3%, 4.1%);
  --muted: hsl(60, 4.8%, 95.9%);
  --muted-foreground: hsl(25, 5.3%, 44.7%);
  --border: hsl(20, 5.9%, 90%);
  --input: hsl(20, 5.9%, 90%);

  /* Interactive Colors */
  --primary: hsl(207, 90%, 54%);
  --primary-foreground: hsl(211, 100%, 99%);
  --secondary: hsl(60, 4.8%, 95.9%);
  --secondary-foreground: hsl(24, 9.8%, 10%);
  --accent: hsl(60, 4.8%, 95.9%);
  --accent-foreground: hsl(24, 9.8%, 10%);

  /* Status Colors */
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(60, 9.1%, 97.8%);

  /* Wood-Themed Custom Colors */
  --wood-brown: hsl(29, 69%, 36%);
  --wood-dark: hsl(35, 56%, 20%);
  --forest-green: hsl(120, 25%, 25%);
  --forest-light: hsl(120, 50%, 35%);
  --wood-beige: hsl(60, 56%, 91%);
  --wood-peru: hsl(30, 59%, 53%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
    padding: 8px 16px;
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.nav-brand {
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.logo-placeholder {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 180px;
  border-radius: 12px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  object-fit: contain;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
}

.navbar.scrolled .logo-img {
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    align-items: center;
  }

  .mobile-lang-switcher {
    display: none;
  }

.nav-menu a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.nav-menu a:hover {
  color: var(--wood-brown);
  transform: translateY(-2px);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wood-brown), var(--wood-peru));
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .language-switcher {
    display: flex;
    gap: 5px;
    background: var(--muted);
    padding: 5px;
    border-radius: 20px;
    border: 1px solid var(--border);
  }

  .lang-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--muted-foreground);
    font-size: 0.9rem;
  }

  .lang-btn.active,
  .lang-btn:hover {
    background: var(--wood-brown);
    color: white;
    transform: translateY(-1px);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--foreground);
    transition: all 0.3s ease;
  }

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
  opacity: 1 !important;
}

.hero-content {
  text-align: center;
  z-index: 3;
  position: relative;
  animation: fadeInUp 1s ease-out;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #F5F5DC;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: var(--forest-green);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: var(--forest-light);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
  border-color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: white;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 12px;
  height: 12px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Section Styles */
.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: var(--wood-brown);
  background: linear-gradient(135deg, var(--wood-brown), var(--wood-peru));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section - Modern Redesign */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-text {
  padding: 40px;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 25px;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #4f46e5, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text .section-subtitle {
  text-align: left;
  margin-bottom: 35px;
  font-size: 1.3rem;
  color: #6b7280;
  font-weight: 500;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #374151;
  font-weight: 400;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #4f46e5;
}

.feature-item i {
  font-size: 1.8rem;
  color: #4f46e5;
  background: linear-gradient(135deg, #4f46e5, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 30px;
}

.feature-item span {
  font-weight: 600;
  color: #374151;
  font-size: 1.1rem;
}

.about-visual {
  position: relative;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  transition: all 0.6s ease;
}

.about-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.about-furniture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
  opacity: 1 !important;
}

.about-visual:hover .about-furniture-img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(5, 150, 105, 0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-visual:hover::before {
  opacity: 1;
}

/* Products Section */
.products-section {
  padding: 120px 0;
  background: var(--wood-beige);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.product-card {
  background: var(--background);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wood-brown), var(--wood-peru));
}

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

.product-image {
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--muted);
}

.wood-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 1 !important;
}

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

.product-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wood-brown);
  margin-bottom: 15px;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 25px;
}

.product-origins {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.origin-tag {
  background: var(--muted);
  color: var(--wood-brown);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* Team Section */
.team-section {
  padding: 120px 0;
  background: var(--background);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-top: 80px;
}

.team-member {
  background: var(--background);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wood-brown), var(--wood-peru));
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.team-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wood-brown), var(--wood-peru));
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--border);
}

.team-photo-placeholder i {
  font-size: 2.5rem;
  color: white;
  opacity: 0.7;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--border);
  transition: all 0.3s ease;
}

.team-photo-rect {
  width: 200px;
  height: 250px;
  border-radius: 15px;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--border);
  transition: all 0.3s ease;
  background: white;
}

.team-photo:hover {
  border-color: var(--wood-brown);
  transform: scale(1.05);
}

.team-photo-rect:hover {
  border-color: var(--wood-brown);
  transform: scale(1.05);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-img-rect {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  opacity: 1 !important;
}

.team-photo:hover .team-img {
  transform: scale(1.1);
}

.team-photo-rect:hover .team-img-rect {
  transform: scale(1.1);
}

.team-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.detail-item i {
  font-size: 1rem;
  color: var(--wood-brown);
  min-width: 16px;
}

.detail-item span {
  line-height: 1.4;
}

.team-email,
.team-phone {
  color: var(--wood-brown);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.team-email:hover,
.team-phone:hover {
  color: var(--wood-peru);
  text-decoration: underline;
}

.team-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wood-brown);
  margin-bottom: 10px;
}

.team-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wood-peru);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
}

/* Impact Section - Modern Redesign */
.impact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #4f46e5 0%, #059669 50%, #f3f4f6 100%);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 1;
}

.impact-section .container {
  position: relative;
  z-index: 2;
}

.impact-section .section-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.impact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 80px;
  font-size: 1.3rem;
  font-weight: 400;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.impact-item {
  position: relative;
  text-align: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.impact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #059669, #10b981);
  transition: height 0.6s ease;
}

.impact-item:hover::before {
  height: 8px;
}

.impact-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.impact-number {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4f46e5, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  position: relative;
}

.impact-number::after {
  content: '+';
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 2rem;
  color: #10b981;
  opacity: 0.6;
}

.impact-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: none;
}

.impact-item:nth-child(1) .impact-number::after { content: '+'; }
.impact-item:nth-child(2) .impact-number::after { content: '+'; }
.impact-item:nth-child(3) .impact-number::after { content: ''; }

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 80px;
  max-width: 100%;
}

.contact-card {
  background: var(--background);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: default;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wood-brown), var(--wood-peru));
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.contact-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
gap: 30px;
  text-align: left;
  padding: 50px 40px;
}

.contact-card.location-card {
  cursor: pointer;
  background: linear-gradient(135deg, var(--wood-beige) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.contact-card.location-card:hover {
  background: linear-gradient(135deg, var(--wood-brown) 0%, var(--wood-peru) 100%);
  color: white;
}

.contact-card.location-card:hover .card-icon i {
  color: white;
}

.contact-card.location-card:hover .location-click {
  color: rgba(255, 255, 255, 0.9);
}

.contact-card.whatsapp-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.contact-card.whatsapp-card::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
}

.contact-card.whatsapp-card .card-icon i {
  color: white;
}

.contact-card.whatsapp-card h3 {
  color: white;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto 25px;
}

.contact-card.large .card-icon {
  margin: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--wood-brown), var(--wood-peru));
}

.contact-card.large .card-icon i {
  color: white;
}

.whatsapp-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

.card-icon i {
  font-size: 2.5rem;
  color: var(--wood-brown);
}

.contact-card.large .card-icon i {
  font-size: 3rem;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wood-brown);
  margin-bottom: 10px;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wood-peru);
  margin-bottom: 15px;
}

.card-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-card.large .card-content p {
  font-size: 1rem;
  margin-bottom: 0;
}

.email-link {
  color: var(--wood-brown);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--wood-peru);
  text-decoration: underline;
}

.phone-link {
  color: var(--wood-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--wood-peru);
}

.location-click {
  display: block;
  font-size: 0.9rem;
  color: var(--wood-brown);
  font-weight: 500;
  margin-top: 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.whatsapp-link:hover {
  transform: translateX(5px);
}

.whatsapp-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.whatsapp-link:hover i {
  transform: translateX(3px);
}

/* Footer */
.footer {
  background: var(--wood-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .logo-placeholder {
  color: white;
  margin-bottom: 20px;
}

.footer-brand .logo-img {
  filter: brightness(1.2);
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

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

.footer-section h4 {
  color: var(--wood-beige);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #555;
  text-align: center;
  color: #ccc;
}

/* RTL Support - Enhanced */
[dir="rtl"] {
  direction: rtl;
  font-family: 'Tajawal', 'Cairo', 'Amiri', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

[dir="rtl"] .about-content {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

[dir="rtl"] .about-text {
  text-align: right;
}

[dir="rtl"] .about-text .section-title {
  text-align: right;
}

[dir="rtl"] .about-text .section-subtitle {
  text-align: right;
}

[dir="rtl"] .about-features {
  direction: rtl;
}

[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .feature-item:hover {
  transform: translateX(-10px);
}

[dir="rtl"] .impact-number::after {
  right: auto;
  left: -20px;
}

[dir="rtl"] .contact-content {
  grid-template-columns: 1fr 2fr;
}

[dir="rtl"] .footer-content {
  grid-template-columns: 1fr 1fr;
}

[dir="rtl"] .footer-links {
  grid-template-columns: 1fr 1fr;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    padding: 0 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .navbar .container {
    padding: 8px 16px;
    max-width: 100%;
    position: relative;
  }

  .nav-right {
    gap: 12px;
    align-items: center;
  }

  .language-switcher {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: auto;
    border-radius: 12px;
  }

  .logo-img {
    height: 45px;
    max-width: 120px;
    object-fit: contain;
  }

  .navbar.scrolled .logo-img {
    height: 40px;
  }

  .logo-placeholder {
    min-height: 45px;
    flex-shrink: 0;
    max-width: 120px;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100vw;
    height: calc(100vh - 75px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px 0;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    max-width: 100vw;
    z-index: 999;
  }

  .nav-menu li {
    width: 100%;
    list-style: none;
  }

  .nav-menu a {
    color: var(--foreground) !important;
    padding: 18px 20px;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
    text-decoration: none;
  }

  .nav-menu a:hover {
    background: rgba(0, 0, 0, 0.02);
    color: var(--wood-brown) !important;
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .mobile-lang-switcher {
    padding: 25px 20px;
    margin-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
  }

  .mobile-lang-switcher .language-switcher {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 25px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .mobile-lang-switcher .lang-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 50px;
    border-radius: 18px;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-section {
    min-height: 100vh;
    overflow: hidden;
    max-width: 100vw;
  }

  .hero-content {
    padding: 30px 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    padding: 0 16px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    padding: 0 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    overflow: hidden;
  }

  .about-text {
    padding: 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .about-text .section-title {
    text-align: center;
    font-size: 2rem;
    padding: 0;
  }

  .about-text .section-subtitle {
    text-align: center;
    font-size: 1rem;
    padding: 0;
  }

  .about-description {
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .about-features {
    justify-content: center;
    gap: 15px;
    max-width: 100%;
  }

  .feature-item {
    padding: 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .feature-item:hover {
    transform: translateY(-3px);
  }

  .feature-item span {
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .about-visual {
    height: 300px;
    max-width: 100%;
    overflow: hidden;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-card {
    padding: 20px 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-image {
    height: 160px;
    max-width: 100%;
    overflow: hidden;
  }

  .product-name {
    font-size: 1.4rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .product-description {
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .product-origins {
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
  }

  .origin-tag {
    font-size: 0.8rem;
    padding: 4px 8px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    overflow: hidden;
  }

  .impact-item {
    padding: 30px 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .impact-number {
    font-size: 3rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .impact-label {
    font-size: 1rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .impact-section .section-title {
    font-size: 2rem;
  }

  .impact-section .section-subtitle {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    overflow: hidden;
  }

  .team-member {
    padding: 20px 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .team-photo-placeholder,
  .team-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .team-photo-placeholder i {
    font-size: 1.8rem;
  }

  .team-details {
    margin-top: 15px;
    padding-top: 15px;
  }

  .detail-item {
    font-size: 0.85rem;
    margin-bottom: 10px;
    gap: 10px;
  }

  .detail-item i {
    font-size: 0.9rem;
    min-width: 14px;
  }

  .team-name {
    font-size: 1.3rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .team-role {
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .team-description {
    font-size: 0.9rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-card {
    padding: 20px 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-card.large {
    grid-column: span 1;
    display: block;
    text-align: center;
    padding: 30px 20px;
  }

  .contact-card.large .card-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
  }

  .contact-card.large .card-icon i {
    font-size: 2.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }

  .card-icon i {
    font-size: 2rem;
  }

  .card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .card-content h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .card-content p {
    font-size: 0.9rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .email-link,
  .phone-link {
    font-size: 0.9rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .location-click {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  .whatsapp-link {
    font-size: 0.95rem;
    gap: 8px;
    margin-top: 8px;
  }

  .whatsapp-link i {
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .footer-section {
    max-width: 100%;
    overflow: hidden;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .footer-section ul li a {
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* RTL Mobile Specific Fixes */
  [dir="rtl"] .container {
    padding: 0 16px;
  }

  [dir="rtl"] .navbar .container {
    flex-direction: row-reverse;
    padding: 8px 16px;
  }

  [dir="rtl"] .nav-menu {
    right: -100%;
    left: auto;
    text-align: center;
    direction: rtl;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    align-items: stretch;
  }

  [dir="rtl"] .nav-menu.active {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .nav-menu li {
    width: 100%;
    display: block;
  }

  [dir="rtl"] .nav-menu a {
    text-align: center;
    direction: rtl;
    padding: 18px 20px;
    display: block;
    width: 100%;
    font-family: 'Tajawal', 'Cairo', 'Amiri', sans-serif;
  }

  [dir="rtl"] .mobile-lang-switcher {
    direction: rtl;
    text-align: center;
    padding: 25px 20px;
    margin-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
  }

  [dir="rtl"] .mobile-lang-switcher .language-switcher {
    justify-content: center;
    direction: rtl;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 25px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  [dir="rtl"] .mobile-lang-switcher .lang-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 50px;
    border-radius: 18px;
    font-family: 'Tajawal', 'Cairo', sans-serif;
  }

  [dir="rtl"] .nav-right {
    flex-direction: row-reverse;
    gap: 12px;
  }

  [dir="rtl"] .language-switcher {
    direction: rtl;
  }

  [dir="rtl"] .hamburger {
    order: -1;
  }

  [dir="rtl"] .hero-cta {
    flex-direction: column;
  }

  [dir="rtl"] .about-content {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .about-text {
    padding: 16px;
  }

  [dir="rtl"] .about-text .section-title {
    text-align: center;
  }

  [dir="rtl"] .about-text .section-subtitle {
    text-align: center;
  }

  [dir="rtl"] .about-description {
    text-align: center;
  }

  [dir="rtl"] .feature-item {
    flex-direction: row-reverse;
    text-align: right;
  }

  [dir="rtl"] .feature-item:hover {
    transform: translateY(-3px);
  }

  [dir="rtl"] .product-origins {
    justify-content: center;
    flex-direction: row-reverse;
  }

  [dir="rtl"] .contact-grid {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .contact-card {
    text-align: center;
  }

  [dir="rtl"] .contact-card.large {
    text-align: center;
  }

  [dir="rtl"] .card-content {
    text-align: center;
  }

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

  [dir="rtl"] .footer-content {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .footer-links {
    grid-template-columns: 1fr;
  }
}