/* ===== RESET & BASE STYLES ===== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

/* ===== CSS VARIABLES - PREMIUM COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-slate: #1e293b;
  --secondary-slate: #334155;
  --accent-gold: #d4af37;
  --rich-gold: #b8942e;
  --deep-emerald: #065f46;
  --emerald: #059669;
  --sage: #6b7280;
  --pearl: #f8fafc;
  --ivory: #fffbeb;
  --charcoal: #111827;
  --gunmetal: #374151;
  --platinum: #e5e7eb;
  --copper: #c2410c;
  --warm-copper: #ea580c;
  
  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-slate) 0%, var(--secondary-slate) 50%, var(--gunmetal) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--rich-gold) 100%);
  --gradient-emerald: linear-gradient(135deg, var(--deep-emerald) 0%, var(--emerald) 100%);
  --gradient-premium: linear-gradient(135deg, var(--primary-slate) 0%, var(--deep-emerald) 50%, var(--accent-gold) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(248, 250, 252, 0.1) 0%, rgba(248, 250, 252, 0.05) 100%);
  
  /* Premium Shadows */
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-3d: 0 20px 40px rgba(30, 41, 59, 0.4), 0 10px 20px rgba(30, 41, 59, 0.3);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-emerald-glow: 0 0 20px rgba(6, 95, 70, 0.2);
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--pearl) 0%, var(--ivory) 100%);
  overflow-x: hidden;
}

.heading-font {
  font-family: 'Playfair Display', serif;
}

/* ===== ENHANCED PREMIUM HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--pearl);
  padding: 1rem 2rem;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-3d);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-header.scrolled {
  background: rgba(30, 41, 59, 0.98);
  box-shadow: var(--shadow-xl), var(--shadow-emerald-glow);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pearl);
  text-decoration: none;
  transition: all 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.4s ease;
}

.logo:hover::after {
  width: 100%;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(var(--shadow-glow));
}

.logo span {
  color: var(--accent-gold);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ===== NAVIGATION ===== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--pearl);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: block;
  background: var(--gradient-glass);
  border: 1px solid rgba(248, 250, 252, 0.1);
}

.nav-menu > li > a:hover {
  background: var(--gradient-gold);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  color: var(--charcoal);
}

/* ===== PREMIUM DROPDOWNS ===== */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  min-width: 220px;
  border-radius: 16px;
  box-shadow: var(--shadow-3d);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) rotateX(-10deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotateX(0deg);
}

.dropdown li a {
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  font-weight: 500;
  border-radius: 12px;
  margin: 0.25rem;
  background: var(--gradient-glass);
  border: 1px solid rgba(30, 41, 59, 0.1);
  position: relative;
  overflow: hidden;
}

.dropdown li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-emerald);
  transition: left 0.4s ease;
  z-index: -1;
}

.dropdown li a:hover::before {
  left: 0;
}

.dropdown li a:hover {
  color: var(--pearl);
  transform: translateX(8px) scale(1.02);
  box-shadow: var(--shadow-soft);
}

.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(20px);
  min-width: 200px;
  border-radius: 16px;
  box-shadow: var(--shadow-3d);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px) rotateY(-10deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown li:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) rotateY(0deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  background: var(--gradient-gold);
  border: none;
  color: var(--charcoal);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
}

/* ===== HERO/BANNER SECTIONS ===== */
.hero-section, .banner-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.hero-section {
  height: 100vh;
}

.banner-section {
  height: 70vh;
  min-height: 500px;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slides {
  display: flex;
  height: 100%;
  animation: slideShow 20s infinite;
}

@keyframes slideShow {
  0%, 20% { transform: translateX(0); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 95% { transform: translateX(-300%); }
  100% { transform: translateX(-400%); }
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img, .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2) saturate(1.1);
  transition: transform 8s ease-in-out;
}

.slide:hover img, .banner-section:hover .banner-image {
  transform: scale(1.05);
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay, .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(30, 41, 59, 0.9) 0%, 
    rgba(6, 95, 70, 0.7) 30%, 
    rgba(212, 175, 55, 0.3) 70%, 
    rgba(30, 41, 59, 0.8) 100%);
  z-index: 2;
}

.banner-overlay {
  background: linear-gradient(135deg, 
    rgba(30, 41, 59, 0.85) 0%, 
    rgba(6, 95, 70, 0.6) 30%, 
    rgba(212, 175, 55, 0.3) 70%, 
    rgba(30, 41, 59, 0.8) 100%);
}

.hero-content, .banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--pearl);
  max-width: 900px;
  padding: 3rem;
  animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-3d);
}

.banner-content {
  max-width: 800px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(20deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.hero-content h1, .banner-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--accent-gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p, .banner-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: var(--platinum);
  font-weight: 300;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--charcoal);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-emerald);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-large), var(--shadow-glow);
  color: var(--pearl);
}

/* ===== SECTIONS & CONTAINERS ===== */
.section-container, .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.container {
  padding: 6rem 2rem 2rem;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(6, 95, 70, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.products-section, .news-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--ivory) 100%);
  position: relative;
}

.products-section::before, .news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(6, 95, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.news-section::before {
  background-image: radial-gradient(circle at 70% 30%, rgba(6, 95, 70, 0.03) 0%, transparent 50%);
}

.why-choose-us {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, 
    var(--primary-slate) 0%, 
    var(--secondary-slate) 50%, 
    var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 95, 70, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Premium Section Styling for Internal Pages */
section {
  position: relative;
  margin-bottom: 4rem;
  padding: 3rem;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px) saturate(180%);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(30, 41, 59, 0.1);
  overflow: hidden;
  transform-style: preserve-3d;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

section:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-3d), var(--shadow-emerald-glow);
  background: rgba(248, 250, 252, 0.95);
}

section:hover::before {
  transform: scaleX(1);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-align: center;
  background: var(--gradient-premium);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: var(--shadow-glow);
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  background: var(--gradient-premium);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: var(--shadow-glow);
}

.section-subtitle, .why-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--sage);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.why-choose-us .section-title {
  color: var(--pearl);
  background: linear-gradient(135deg, var(--pearl) 0%, var(--accent-gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-intro {
  color: var(--platinum);
  max-width: 800px;
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(30, 41, 59, 0.1);
  color: var(--charcoal);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  transition: left 0.4s ease;
  z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  color: var(--charcoal);
  border-color: var(--accent-gold);
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

/* ===== GRIDS ===== */
.products-grid, .why-grid, .news-grid, .facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.facts {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ===== CARD COMPONENTS ===== */
.product-card, .why-card, .news-card, .fact-card {
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px) saturate(180%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.1);
  transform-style: preserve-3d;
}

.why-card {
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem;
}

.news-card {
  text-align: left;
  padding: 0;
  overflow: hidden;
}

.fact-card {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  background: var(--gradient-glass);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  border-radius: 16px;
}

/* Card Hover Effects */
.product-card::before, .why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card::before, .fact-card::before {
  width: 4px;
  height: 100%;
  transform: scaleX(1);
  transition: width 0.4s ease;
}

.product-card::after, .why-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-card::after {
  left: -50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.product-card:hover, .why-card:hover, .news-card:hover, .fact-card:hover {
  transform: translateY(-12px) rotateX(5deg) rotateY(5deg);
  box-shadow: var(--shadow-3d), var(--shadow-glow);
  background: rgba(248, 250, 252, 0.95);
}

.why-card:hover {
  background: rgba(248, 250, 252, 0.1);
  transform: translateY(-8px) rotateX(3deg) rotateY(3deg);
  box-shadow: var(--shadow-3d), var(--shadow-emerald-glow);
  border-color: var(--accent-gold);
}

.news-card:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
  box-shadow: var(--shadow-3d), var(--shadow-emerald-glow);
}

.fact-card:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(3deg);
  box-shadow: var(--shadow-3d), var(--shadow-glow);
  background: rgba(248, 250, 252, 0.95);
  border-color: var(--accent-gold);
}

.product-card:hover::before, .why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::before, .fact-card:hover::before {
  width: 8px;
}

.product-card:hover::after, .why-card:hover::after {
  opacity: 1;
}

/* Card Content */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  filter: drop-shadow(var(--shadow-soft));
}

.product-card:hover img {
  transform: scale(1.1) rotateZ(-2deg);
  filter: drop-shadow(var(--shadow-medium));
}

.product-card h4, .why-card h3, .news-info h3 {
  font-size: 1.3rem;
  background: var(--gradient-premium);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.why-card h3 {
  font-size: 1.6rem;
  background: var(--gradient-gold);
  margin-bottom: 1.5rem;
}

.product-card p, .why-card p {
  color: var(--sage);
  line-height: 1.6;
  font-weight: 400;
}

.why-card p {
  color: var(--platinum);
  line-height: 1.8;
  font-weight: 300;
}

section p {
  color: var(--sage);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.fact-card b {
  color: var(--deep-emerald);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

/* ===== NEWS CARD SPECIFIC ===== */
.news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(1.1) contrast(1.1);
}

.news-card:hover img {
  transform: scale(1.08) rotate(-1deg);
}

.news-info {
  padding: 2.5rem;
  position: relative;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.news-category {
  background: var(--gradient-gold);
  color: var(--charcoal);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.news-date {
  color: var(--sage);
  font-weight: 500;
}

.news-desc {
  color: var(--sage);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.read-more {
  color: var(--deep-emerald);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: var(--gradient-glass);
  border: 1px solid rgba(6, 95, 70, 0.2);
}

.read-more:hover {
  background: var(--gradient-emerald);
  color: var(--pearl);
  transform: translateX(8px) scale(1.05);
  box-shadow: var(--shadow-soft);
}

/* ===== PREMIUM LIST STYLING ===== */
ul {
  list-style: none;
  padding: 0;
}

li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

li:hover {
  background: var(--gradient-glass);
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

li b {
  color: var(--deep-emerald);
  font-weight: 700;
}

/* ===== PREMIUM TABLE STYLING ===== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
}

table th, table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(30, 41, 59, 0.1);
  transition: all 0.3s ease;
}

table th {
  background: var(--gradient-premium);
  color: var(--pearl);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--accent-gold);
}

table td {
  color: var(--charcoal);
  font-weight: 500;
  background: rgba(248, 250, 252, 0.8);
}

table tr:hover td {
  background: var(--gradient-glass);
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

table tr:last-child td {
  border-bottom: none;
}

/* ===== ENHANCED PREMIUM FOOTER ===== */
.footer {
  background: linear-gradient(135deg, 
    var(--charcoal) 0%, 
    var(--primary-slate) 50%, 
    var(--secondary-slate) 100%);
  color: var(--platinum);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 95, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.footer-col h3 {
  color: var(--pearl);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  position: relative;
  font-family: 'Playfair Display', serif;
  background: var(--gradient-gold);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: var(--shadow-glow);
}

.footer-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 220px;
}

.footer-images img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid var(--accent-gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  filter: saturate(1.1);
}

.footer-images img:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  border-color: var(--rich-gold);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  display: flex;
  margin-top: 1.5rem;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: none;
  background: rgba(248, 250, 252, 0.1);
  color: var(--pearl);
  outline: none;
  font-size: 1rem;
  font-weight: 400;
}

.newsletter input::placeholder {
  color: var(--platinum);
  opacity: 0.7;
}

.newsletter button {
  background: var(--gradient-gold);
  border: none;
  color: var(--charcoal);
  padding: 1.2rem 2rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.newsletter button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-emerald);
  transition: left 0.4s ease;
  z-index: -1;
}

.newsletter button:hover::before {
  left: 0;
}

.newsletter button:hover {
  color: var(--pearl);
  transform: scale(1.05);
  box-shadow: var(--shadow-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.footer-bottom a {
  color: var(--platinum);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--accent-gold);
  background: var(--gradient-glass);
  transform: translateY(-2px);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-gold);
  color: var(--charcoal);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid var(--rich-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-large), var(--shadow-glow);
  background: var(--gradient-emerald);
  color: var(--pearl);
}

/* ===== UTILITY CLASSES ===== */
.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.loading {
  opacity: 0.6;
  pointer-events: none;
  filter: blur(1px);
}

.glow-on-hover {
  position: relative;
  overflow: hidden;
}

.glow-on-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s;
}

.glow-on-hover:hover::before {
  left: 100%;
}

.hidden {
  display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-3d);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    margin: 0.25rem 0;
  }

  .dropdown {
    position: static;
    background: rgba(248, 250, 252, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .sub-dropdown {
    position: static;
    background: rgba(248, 250, 252, 0.05);
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 0.25rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .hero-section {
    min-height: 600px;
  }

  .banner-section {
    height: 50vh;
    min-height: 400px;
  }

  .hero-content, .banner-content {
    padding: 2rem;
    margin: 1rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p, .banner-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .container {
    padding: 4rem 1rem 2rem;
  }

  .products-section, .why-choose-us, .news-section {
    padding: 4rem 1rem;
  }

  .products-grid, .why-grid, .news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .facts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .product-card, .why-card, .fact-card {
    padding: 2rem;
  }

  .why-card {
    padding: 2.5rem;
  }

  section {
    padding: 2rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .news-info {
    padding: 2rem;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  table th, table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .hero-content, .banner-content {
    padding: 1.5rem;
    margin: 0.5rem;
  }

  .products-section, .why-choose-us, .news-section {
    padding: 4rem 1rem;
  }

  .container {
    padding: 3rem 1rem 1rem;
  }

  .product-card, .why-card, .fact-card {
    padding: 1.5rem;
  }

  section {
    padding: 1.5rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer {
    padding: 4rem 1rem 2rem;
  }
}

/* ===== FOCUS STATES & ACCESSIBILITY ===== */
*:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--platinum);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-emerald);
}