
:root {
  --primary: #0B3D2E;
  --gold: #C9A961;
  --navy: #0A1929;
  --saffron: #FF9933;
  --turquoise: #00CED1;
  --coral: #FF6B6B;
  --emerald: #50C878;
  --sapphire: #0F52BA;
  --purple: #8B5CF6;
  --bg: #F8FAFC;
  --text: #1E293B;
  --muted: #64748B;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem); }
p { font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem); }

img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  min-height: 44px;
  min-width: 44px;
}

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

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--gold));
  background-size: 200% 100%;
  z-index: 1001;
  animation: progressShimmer 2s linear infinite;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(11, 61, 46, 0.85);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  will-change: transform;
  border-bottom: 2px solid transparent;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--turquoise), var(--coral), var(--gold));
  background-size: 300% 100%;
  animation: borderGradient 4s ease infinite;
}

@keyframes borderGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.navbar.scrolled {
  background: rgba(11, 61, 46, 0.95);
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  transition: all 0.3s;
}

.logo:hover .logo-icon {
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.8), 0 0 60px rgba(201, 169, 97, 0.4);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(201, 169, 97, 0.8), 0 0 60px rgba(201, 169, 97, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(201, 169, 97, 1), 0 0 80px rgba(201, 169, 97, 0.6); }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: white;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

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

/* Mega Menu */
.mega-menu-parent {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 900px;
  max-width: 95vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.mega-menu-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-item {
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #F8FAFC, white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.mega-menu-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: currentColor;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mega-menu-item:nth-child(1) { color: var(--turquoise); }
.mega-menu-item:nth-child(2) { color: var(--purple); }
.mega-menu-item:nth-child(3) { color: var(--emerald); }
.mega-menu-item:nth-child(4) { color: var(--coral); }
.mega-menu-item:nth-child(5) { color: var(--sapphire); }
.mega-menu-item:nth-child(6) { color: var(--saffron); }

.mega-menu-item:hover { 
  box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 30px currentColor;
}

.mega-menu-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.mega-menu-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.mega-menu-item p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.mega-menu-link {
  color: currentColor !important;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.mega-menu-link:hover {
  gap: 0.75rem;
}

.mega-menu-link::after {
  display: none;
}

/* Search Icon */
.search-wrapper {
  position: relative;
}

.search-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.search-icon:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg) scale(1.1);
}

.search-input {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  padding: 0;
  border: none;
  border-radius: 50px;
  background: white;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.search-wrapper.active .search-input {
  width: 280px;
  padding: 0.875rem 1.5rem;
  opacity: 1;
}

.search-wrapper.active .search-icon {
  background: var(--gold);
  color: var(--primary);
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  color: white;
  font-weight: 500;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.lang-toggle-icon {
  font-size: 20px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: var(--primary);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 320px;
  max-height: 400px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-search {
  padding: 1rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.lang-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.lang-search input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.lang-search input::placeholder {
  color: rgba(255,255,255,0.5);
}

.lang-list {
  max-height: 320px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.lang-list::-webkit-scrollbar {
  width: 6px;
}

.lang-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

.lang-list::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.lang-item {
  padding: 0.75rem 1.25rem;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.lang-item:hover {
  background: rgba(201, 169, 97, 0.15);
  padding-left: 1.5rem;
}

.lang-item span {
  flex: 1;
}

/* CTA Button with Shine */
.nav-btn {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.nav-btn:hover::before {
  left: 100%;
}

.nav-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.5);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: var(--primary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem 0;
}

.mobile-menu > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a,
.mobile-menu .mobile-accordion-toggle {
  display: block;
  padding: 1rem 5%;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.mobile-menu a:hover,
.mobile-menu .mobile-accordion-toggle:hover {
  background: rgba(255,255,255,0.05);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.2);
}

.mobile-accordion-content.active {
  max-height: 500px;
}

.mobile-accordion-content a {
  padding-left: 10%;
  font-size: 0.9rem;
  opacity: 0.9;
}

.mobile-accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-accordion-toggle::after {
  content: '▼';
  font-size: 12px;
  transition: transform 0.3s;
}

.mobile-accordion-toggle.active::after {
  transform: rotate(180deg);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  z-index: 3000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-left: 4px solid var(--gold);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Header/Hero */
.hero {
  min-height: 100vh;
  padding-top: 76px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 50%, #0d3b2a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 206, 209, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: float 20s infinite;
  opacity: 0.4;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-100px) translateX(50px); }
  50% { transform: translateY(-50px) translateX(-50px); }
  75% { transform: translateY(-150px) translateX(100px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.hero-tagline {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  will-change: transform;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.stat-card:nth-child(1) .stat-icon { background: linear-gradient(135deg, var(--turquoise), #00A8A8); }
.stat-card:nth-child(2) .stat-icon { background: linear-gradient(135deg, var(--saffron), #FF6B00); }
.stat-card:nth-child(3) .stat-icon { background: linear-gradient(135deg, var(--coral), #FF4757); }
.stat-card:nth-child(4) .stat-icon { background: linear-gradient(135deg, var(--emerald), #2ECC71); }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Section Styles */
section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--coral));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-header p {
  color: var(--muted);
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.category-card {
  border-radius: 24px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  will-change: transform;
  transform-style: preserve-3d;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.category-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:nth-child(1) { background: linear-gradient(135deg, #00CED1, #0099CC); }
.category-card:nth-child(2) { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.category-card:nth-child(3) { background: linear-gradient(135deg, #50C878, #2E8B57); }
.category-card:nth-child(4) { background: linear-gradient(135deg, #FF6B6B, #EE5A6F); }
.category-card:nth-child(5) { background: linear-gradient(135deg, #0F52BA, #003D82); }
.category-card:nth-child(6) { background: linear-gradient(135deg, #FF9933, #FF6B00); }

.category-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  font-size: 40px;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.category-card p {
  opacity: 0.95;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.category-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  font-size: 20px;
}

.category-card:hover .category-arrow {
  background: white;
  color: var(--primary);
  transform: translateX(5px);
}

/* Spices Grid */
.spices-section {
  background: linear-gradient(180deg, white 0%, #F8FAFC 100%);
}

.spices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.spice-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  will-change: transform;
}

.spice-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.spice-image {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.spice-card:nth-child(1) .spice-image { background: linear-gradient(135deg, #FFD700, #FFA500); }
.spice-card:nth-child(2) .spice-image { background: linear-gradient(135deg, #DC143C, #B22222); }
.spice-card:nth-child(3) .spice-image { background: linear-gradient(135deg, #90EE90, #228B22); }
.spice-card:nth-child(4) .spice-image { background: linear-gradient(135deg, #8B4513, #654321); }
.spice-card:nth-child(5) .spice-image { background: linear-gradient(135deg, #2C3E50, #34495E); }
.spice-card:nth-child(6) .spice-image { background: linear-gradient(135deg, #7CFC00, #32CD32); }
.spice-card:nth-child(7) .spice-image { background: linear-gradient(135deg, #D2691E, #8B4513); }
.spice-card:nth-child(8) .spice-image { background: linear-gradient(135deg, #4A4A4A, #2C2C2C); }
.spice-card:nth-child(9) .spice-image { background: linear-gradient(135deg, #9ACD32, #6B8E23); }
.spice-card:nth-child(10) .spice-image { background: linear-gradient(135deg, #FFD700, #DAA520); }
.spice-card:nth-child(11) .spice-image { background: linear-gradient(135deg, #FF8C00, #FF6347); }

.spice-content {
  padding: 1.5rem;
}

.spice-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.spice-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.spice-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: white;
  padding: 0.875rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.spice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 61, 46, 0.3);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s;
  border: 2px solid transparent;
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
}

.why-card:nth-child(1) .why-icon { background: linear-gradient(135deg, #FF9933, #FF6B00); }
.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, #00CED1, #00A8A8); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, #FF6B6B, #EE5A6F); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #50C878, #2ECC71); }

.why-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--muted);
}

/* Founder Section */
.founder-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.founder-image {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  padding: 8px;
  box-shadow: 0 20px 60px rgba(201, 169, 97, 0.4);
}

.founder-image-inner {
  width: 100%;
  height: 100%;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
}

.founder-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.founder-content h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.founder-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  align-items: start;
  transition: all 0.3s;
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
}

.info-item:nth-child(1) .info-icon { background: linear-gradient(135deg, var(--saffron), #FF6B00); }
.info-item:nth-child(2) .info-icon { background: linear-gradient(135deg, var(--turquoise), #00A8A8); }
.info-item:nth-child(3) .info-icon { background: linear-gradient(135deg, var(--coral), #FF4757); }
.info-item:nth-child(4) .info-icon { background: linear-gradient(135deg, var(--emerald), #2ECC71); }

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

.info-content p {
  color: var(--muted);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--navy);
  color: white;
  padding: 4rem 0 0;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

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

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  padding: 1rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.4s;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: white;
  border-radius: 24px 24px 0 0;
}

.modal-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 24px;
}

.modal-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.spec-item {
  background: var(--bg);
  padding: 1rem;
  border-radius: 12px;
  border-left: 4px solid var(--saffron);
}

.spec-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.spec-value {
  font-weight: 700;
  color: var(--primary);
}

.modal-footer {
  padding: 0 2rem 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.whatsapp-btn {
  flex: 1;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
  font-size: 22px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid, .spices-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .mega-menu { display: none; }
  .lang-text { display: none; }
  .lang-menu { width: 280px; left: 50%; right: auto; transform: translateX(-50%) translateY(10px); }
  .lang-dropdown.active .lang-menu { transform: translateX(-50%) translateY(0); }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .founder-grid { grid-template-columns: 300px 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

@media (min-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .spices-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1440px) {
  .spices-grid { grid-template-columns: repeat(4, 1fr); }
}

[dir="rtl"] .search-input { right: auto; left: 0; }
[dir="rtl"] .category-arrow { transform: scaleX(-1); }
[dir="rtl"] .category-card:hover .category-arrow { transform: translateX(-5px) scaleX(-1); }
