/* CORRIT WEBSITE - PERFECT MODERN DESIGN */
/* ========================================== */

/* CSS Variables - Brand Colors */
:root {
  --surface-0: 12 16 21; /* #0b0f15 */
  --surface-1: 17 23 31;
  --surface-2: 22 30 41;
  --espresso: 41 28 24;
  --burgundy: 79 23 35;
  --midnight: 13 20 32;
  --charcoal: 15 18 24;
  --gold: 228 196 134;
  --platinum: 201 208 214;
  --accent-blue: 59 130 246;
  --accent-purple: 147 51 234;
  --accent-emerald: 16 185 129;
  
  /* Shadows */
  --shadow-soft: 0 20px 60px -20px rgb(0 0 0 / 0.45);
  --shadow-glow: 0 0 40px rgb(var(--gold) / 0.3);
  --shadow-header: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-smooth: 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, rgb(var(--surface-0)) 0%, rgb(var(--surface-1)) 50%, rgb(var(--surface-2)) 100%);
  color: rgb(226 232 240);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Typography */
.display-font {
  font-family: 'Plus Jakarta Sans', 'Manrope', 'Inter', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient-gold {
  background: linear-gradient(135deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, rgb(var(--accent-blue)) 0%, rgb(var(--accent-purple)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-indian {
  background: linear-gradient(135deg, #ffffff 0%, #e4c486 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.indian-flag-gradient {
  background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating Pill Header */
.header-pill {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: calc(100% - 3rem);
  max-width: 1200px;
  background: rgba(12, 16, 21, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-header);
  transition: all var(--transition-smooth);
}

.header-pill:hover {
  background: rgba(12, 16, 21, 0.9);
  box-shadow: var(--shadow-header), 0 0 40px rgba(0, 0, 0, 0.6);
}

.header-pill .logo {
  height: 2rem !important;
  width: auto !important;
  max-height: 2rem !important;
  max-width: 120px !important;
  filter: brightness(0) invert(1);
  transition: all var(--transition-smooth);
  object-fit: contain;
}

.header-pill img.logo {
  height: 2rem !important;
  width: auto !important;
  max-height: 2rem !important;
  max-width: 120px !important;
}

.header-pill .logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover {
  color: rgb(var(--gold));
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: rgb(var(--gold));
  background: rgba(228, 196, 134, 0.1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: rgba(12, 16, 21, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

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

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(var(--gold));
  padding-left: 2rem;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, rgb(var(--gold)) 0%, #fbbf24 100%);
  color: rgb(var(--surface-0));
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(228, 196, 134, 0.3);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(228, 196, 134, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(226, 232, 240);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: rgb(226, 232, 240);
  padding: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  color: rgb(var(--gold));
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 16, 21, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 9999;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu.show {
  display: block;
  animation: slideIn 0.3s ease-out;
}

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

.mobile-menu .nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section - Original Layout with Bigger PC Image and Transparent Box Icons */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 16, 21, 0.95) 0%, rgba(17, 23, 31, 0.9) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content-left {
  padding-right: 2rem;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: var(--display-font);
  background: linear-gradient(135deg, #ffffff 0%, #e4c486 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero-icon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.hero-icon-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-icon-item:hover::before {
  transform: scaleX(1);
}

.icon-badge {
  background: linear-gradient(135deg, rgb(var(--gold)) 0%, #fbbf24 100%);
  color: rgb(var(--surface-0));
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(228, 196, 134, 0.3);
}

.hero-icon-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.hero-image-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Original Small Square Rounded Image Frame - Bigger on PC */
.frame-3d {
  position: relative;
  padding: 1px;
  border-radius: 1.25rem;
  border: 1px solid rgba(228, 196, 134, 0.7);
  box-shadow: 0 26px 70px -42px rgb(0 0 0 / 0.6), inset 0 1px 0 0 rgb(255 255 255 / 0.04);
  will-change: transform, box-shadow;
  transform-style: preserve-3d;
  animation: borderGlow 4.5s ease-in-out infinite;
  max-width: 800px;
  width: 100%;
}

.frame-3d:hover {
  transform: translateY(-2px) rotateX(0.6deg) rotateY(-0.6deg);
}

.frame-inner {
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.frame-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: radial-gradient(120% 120% at 50% 10%, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0));
  border-radius: 1.2rem;
}

@keyframes borderGlow {
  0%, 100% { 
    box-shadow: 0 26px 70px -42px rgb(0 0 0 / 0.6), 0 0 0 0 rgba(228, 196, 134, 0.0), inset 0 1px 0 0 rgb(255 255 255 / 0.04); 
  }
  50% { 
    box-shadow: 0 30px 76px -40px rgb(0 0 0 / 0.65), 0 0 0 1px rgba(228, 196, 134, 0.18), inset 0 1px 0 0 rgb(255 255 255 / 0.05); 
  }
}

/* Hero Entrance Animation */
.hero-content-left {
  animation: heroSlideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateX(-50px);
}

.hero-image-right {
  animation: heroSlideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  opacity: 0;
  transform: translateX(50px);
}

.hero-icons {
  animation: heroIconsFadeIn 1s ease-out 0.8s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes heroSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroIconsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(17, 23, 31, 0.95) 0%, rgba(12, 16, 21, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(228, 196, 134, 0.3) 50%, transparent 100%);
}

.testimonials-strip-section {
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.testimonials-strip-section .container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.testimonials-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 4rem;
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  animation: slideTestimonials 30s linear infinite;
  white-space: normal;
  padding: 1rem 0;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  touch-action: none;
  -webkit-touch-callout: none;
  width: max-content;
  --testimonial-total-width: 1200px;
  min-width: var(--testimonial-total-width);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 350px;
  max-width: 400px;
  height: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonial-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: rgb(var(--gold));
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@keyframes slideTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* BRAND NEW CHIP SLIDER - NO COMPLICATIONS */
.features-strip-section {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.features-strip-section .container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.features-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 2rem;
}

.chip-slider {
  display: flex;
  gap: 1rem;
  animation: slideChips 20s linear infinite;
  white-space: nowrap;
  padding: 0.5rem 0;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  touch-action: none;
  -webkit-touch-callout: none;
  width: max-content;
  --chip-total-width: 1200px;
  min-width: var(--chip-total-width);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chip-slider::-webkit-scrollbar {
  display: none;
}

.chip-slider:hover {
  animation-play-state: paused;
}

.chip-large {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: max-content;
}

.chip-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.chip-large:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.chip-large:hover::before {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .chip-slider:hover {
    animation-play-state: running;
  }
}

.chip-large {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: max-content;
}

.chip-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.chip-large:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.chip-large:hover::before {
  transform: scaleX(1);
}

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

/* Product Cards - 2 Columns Side by Side (Responsive) */
.product-grid-3x1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Keep old class name for backward compatibility */
.product-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Prevent 3D context from affecting child images */
  transform-style: flat !important;
  perspective: none !important;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card:hover img,
.product-card:hover .product-image {
  transform: rotate(0deg) scale(1.05) !important;
  transform-origin: center center !important;
  perspective: none !important;
  transform-style: flat !important;
  /* Images are properly cropped, no blend mode needed */
  filter: drop-shadow(0 12px 24px rgba(228, 196, 134, 0.4)) !important;
}

.product-card:hover img {
  transform: rotate(0deg) !important;
  transform-origin: center center !important;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 16px rgba(228, 196, 134, 0.2));
  transition: filter var(--transition-smooth);
  background: transparent !important;
  padding: 0 !important;
  transform: rotate(0deg) !important;
  transform-origin: center center !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  object-position: center !important;
  image-orientation: none !important;
  -webkit-image-orientation: none !important;
  image-orientation: 0deg !important;
  max-width: 100%;
  will-change: filter;
  flex-shrink: 0;
  /* Force front-facing, no perspective or 3D transforms */
  perspective: none !important;
  transform-style: flat !important;
  backface-visibility: visible !important;
  /* Ensure no white background shows through */
  background-color: transparent !important;
  background-image: none !important;
  /* Images are now properly cropped, no need for blend mode */
  filter: drop-shadow(0 8px 16px rgba(228, 196, 134, 0.2));
}

.product-card:hover img {
  filter: drop-shadow(0 12px 24px rgba(228, 196, 134, 0.4)) contrast(1.1) brightness(0.98) !important;
  transform: rotate(0deg) !important;
  transform-origin: center center !important;
  /* Images are properly cropped, no blend mode needed */
}

.product-card h3 {
  color: rgb(var(--gold));
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--display-font);
  flex-shrink: 0;
}

.product-description {
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-card li::before {
  content: '•';
  color: rgb(var(--gold));
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Technical Specifications */
.tech-specs {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(228, 196, 134, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(228, 196, 134, 0.15);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tech-specs h4 {
  color: rgb(var(--gold));
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1rem;
  font-weight: 600;
}

.tech-specs h4:first-child {
  margin-top: 0;
}

.tech-specs h4:not(:first-child) {
  margin-top: 1.5rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.spec-grid:last-child {
  margin-bottom: 0;
}

.spec-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.875rem 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-align: center;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  line-height: 1.4;
  word-wrap: break-word;
  hyphens: auto;
}

.spec-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  transform: translateY(-2px);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(228, 196, 134, 0.2));
}

.feature-card h3 {
  color: rgb(var(--gold));
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--display-font);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content .section-title {
  margin-bottom: 1.5rem;
}

.cta-content .section-subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.spec-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(228, 196, 134, 0.1), rgba(228, 196, 134, 0.05));
  border: 1px solid rgba(228, 196, 134, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--gold));
}

.feature-card h3 {
  color: rgb(var(--gold));
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--display-font);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Quality Section with Original Styling */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.quality-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.quality-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.quality-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.quality-item:hover::before {
  transform: scaleX(1);
}

.quality-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 8px rgba(228, 196, 134, 0.2));
  transition: filter var(--transition-smooth);
}

.quality-item:hover img {
  filter: drop-shadow(0 8px 16px rgba(228, 196, 134, 0.4));
}

.quality-item h3 {
  color: rgb(var(--gold));
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--display-font);
}

.quality-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Sustainability Section - Enhanced with Vector Icons */
.sustainability-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.sustainability-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sustainability-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.sustainability-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.sustainability-feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.sustainability-feature:hover::before {
  transform: scaleX(1);
}

.sustainability-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(228, 196, 134, 0.1), rgba(228, 196, 134, 0.05));
  border: 1px solid rgba(228, 196, 134, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--gold));
}

.sustainability-feature h4 {
  color: rgb(var(--gold));
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--display-font);
}

.sustainability-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Design Section - New Section */
.design-section {
  background: linear-gradient(135deg, rgba(17, 23, 31, 0.9) 0%, rgba(22, 30, 41, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.design-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" width="100" height="100" 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(228,196,134,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.design-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.design-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.design-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.design-card:hover::before {
  transform: scaleX(1);
}

.design-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 16px rgba(228, 196, 134, 0.2));
  transition: filter var(--transition-smooth);
}

.design-card:hover img {
  filter: drop-shadow(0 12px 24px rgba(228, 196, 134, 0.4));
}

.design-card h4 {
  color: rgb(var(--gold));
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--display-font);
}

.design-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  animation: fadeInUp 0.8s ease-out both;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgb(var(--gold));
}

.blog-excerpt {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.5);
}

/* Contact Section with Original Styling */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-content-left {
  padding-right: 2rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 2rem;
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.partner-type {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.partner-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.partner-type:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.partner-type:hover::before {
  transform: scaleX(1);
}

.partner-type h4 {
  color: rgb(var(--gold));
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--display-font);
}

.partner-type p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.contact-form-card:hover::before {
  transform: scaleX(1);
}

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

.form-label {
  display: block;
  color: rgb(var(--gold));
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(228, 196, 134, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(228, 196, 134, 0.1);
}

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

.form-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: slideIn 0.3s ease-out;
}

.form-message-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer - Enhanced & Modern Design */
.footer {
  background: linear-gradient(135deg, rgba(17, 23, 31, 0.98) 0%, rgba(12, 16, 21, 1) 100%);
  border-top: 2px solid rgba(228, 196, 134, 0.4);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgb(var(--gold)) 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(228, 196, 134, 0.6);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo-section {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo-section img {
  height: 70px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.footer-links h4 {
  color: rgb(var(--gold));
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  text-align: center;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgb(var(--gold)) 50%, transparent 100%);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-links li {
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.footer-links a:hover {
  color: rgb(var(--gold));
  background: rgba(228, 196, 134, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(228, 196, 134, 0.2);
  padding-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--display-font);
  background: linear-gradient(135deg, rgb(var(--gold)) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 1.5rem 0;
    align-items: center;
  }
  
  .hero-content-left {
    padding-right: 0;
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-image-right {
    order: 2;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-icon-item {
    padding: 1rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .hero-icon-item span {
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
  }
  
  .frame-3d {
    max-width: 455px;
    margin: 0 auto;
    width: calc(100% - 2rem);
    display: flex;
    justify-content: center;
  }
  
  .hero-title {
    font-size: clamp(3.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 90vh;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
  }
  
  .product-grid-2x2,
  .product-grid-3x1 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid-3x1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .product-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .sustainability-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .design-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .partner-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .testimonial-item {
    min-width: 320px;
    max-width: 380px;
    padding: 1.25rem;
  }

  .testimonial-content p {
    font-size: 0.9rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .testimonial-author strong {
    font-size: 0.95rem;
  }

  .testimonial-author span {
    font-size: 0.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-strip-section {
    padding: 0.5rem 0;
    overflow: hidden;
  }
  
  .features-strip-section .container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .features-strip {
    overflow: visible;
    width: 100%;
    padding: 0 1rem;
  }
  
  .chip-slider {
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    animation: slideChips 15s linear infinite;
    width: max-content;
  }
  
  .chip-large {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .chip-large {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .header-pill {
    width: calc(100% - 2rem);
    padding: 0.75rem 1.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 0.625rem 1rem !important;
    font-size: 0.8rem !important;
    max-width: 140px !important;
  }
  
  .header-pill {
    width: calc(100% - 1rem);
    padding: 0.75rem 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: clamp(3rem, 7vw, 4rem);
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 320px;
  }
  
  .hero-icon-item {
    padding: 0.75rem;
    min-height: 70px;
  }
  
  .hero-icon-item span {
    font-size: 0.8rem;
  }
  
  .frame-3d {
    max-width: 441px;
    margin: 0 auto;
    width: calc(100% - 1rem);
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .product-card,
  .quality-item,
  .sustainability-feature,
  .partner-type,
  .design-card {
    padding: 1.5rem;
  }
  
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .chip-large {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }
  
  .features-strip-section {
    padding: 0.5rem 0;
    overflow: hidden;
  }
  
  .chip-slider {
    animation: slideChips 12s linear infinite;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    width: max-content;
  }

  .testimonial-slider {
    animation: slideTestimonials 20s linear infinite;
    gap: 1.5rem;
    padding: 0.75rem 0;
  }

  .testimonials-strip {
    padding: 0 2rem;
  }

  .testimonial-item {
    min-width: 300px;
    max-width: 360px;
    padding: 1rem;
  }

  .testimonial-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .testimonial-author strong {
    font-size: 0.9rem;
  }

  .testimonial-author span {
    font-size: 0.75rem;
  }
  
  .features-strip {
    overflow: visible;
    width: 100%;
    padding: 0 0.5rem;
  }
  
  .features-strip-section .container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .chip-large {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Hide Hamburger Menus on Desktop/PC */
@media (min-width: 769px) {
  .floating-hamburger,
  #bottom-hamburger-btn,
  #bottom-mobile-menu,
  .floating-menu {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Force Product Images to be Straight - No Rotation */
.product-card img,
.product-image {
  transform: rotate(0deg) !important;
  transform-origin: center center !important;
  image-orientation: none !important;
  -webkit-image-orientation: none !important;
  image-orientation: 0deg !important;
  will-change: filter !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0 !important;
  /* Prevent EXIF orientation from affecting display */
  -webkit-transform: rotate(0deg) !important;
  -moz-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  /* Ensure parent 3D context doesn't affect this */
  transform-style: flat !important;
  perspective: none !important;
  /* Images are now properly cropped, no need for blend mode */
  filter: drop-shadow(0 8px 16px rgba(228, 196, 134, 0.2)) !important;
}


.product-card:hover img,
.product-card:hover .product-image {
  transform: rotate(0deg) !important;
  transform-origin: center center !important;
  /* Images are properly cropped, no blend mode needed */
  filter: drop-shadow(0 12px 24px rgba(228, 196, 134, 0.4)) !important;
}

/* Blog Footer Alignment Fix */
#footer-grid {
  align-items: start;
}

#footer-grid > div {
  display: flex;
  flex-direction: column;
}

#footer-grid h5.foot {
  margin-bottom: 0.75rem;
  margin-top: 0;
}

#footer-grid ul {
  margin-top: 0.75rem;
  padding-left: 0;
}

#footer-grid .text-xs {
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* Footer Styling - Modern & Clean */
footer {
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.98) 0%, rgba(12, 16, 21, 1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(228, 196, 134, 0.4) 50%, transparent 100%);
}

.foot {
  font-weight: 700;
  color: rgb(var(--gold));
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.foot::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, transparent 100%);
  border-radius: 1px;
}

.link-foot {
  color: rgb(203 213 225);
  text-decoration: none;
  transition: all var(--transition-smooth);
  font-size: 0.875rem;
  display: inline-block;
  padding: 0.25rem 0;
  position: relative;
}

.link-foot:hover {
  color: rgb(var(--gold));
  transform: translateX(0.25rem);
}

.link-foot::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgb(var(--gold));
  transition: width var(--transition-smooth);
}

.link-foot:hover::before {
  width: 100%;
}

/* Footer Grid Improvements */
#footer-grid {
  gap: 2rem;
}

#footer-grid > div {
  padding: 0;
}

#footer-grid > div:first-child {
  max-width: 100%;
}

#footer-grid > div:first-child p {
  line-height: 1.6;
  color: rgb(203 213 225);
  font-size: 0.875rem;
}

#footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-grid ul li {
  margin-bottom: 0.5rem;
}

#footer-grid ul li:last-child {
  margin-bottom: 0;
}

/* Footer Bottom Section */
footer > div:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

footer > div:last-child p {
  color: rgb(148 163 184);
  font-size: 0.75rem;
  line-height: 1.5;
}

footer > div:last-child .link-foot {
  font-size: 0.75rem;
  color: rgb(148 163 184);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

footer > div:last-child .link-foot:hover {
  color: rgb(203 213 225);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(228, 196, 134, 0.2);
  transform: translateX(0);
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 1rem;
  }
  
  #footer-grid {
    gap: 1.5rem;
  }
  
  footer > div:last-child {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  footer > div:last-child .inline-flex {
    justify-content: center;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: rgb(var(--gold));
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile Header Menu Fixes */
@media (max-width: 768px) {
  .btn-primary {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
    min-height: 44px !important;
    max-width: 160px !important;
  }
  
  .hero-title {
    font-size: clamp(3.2rem, 7.5vw, 4.5rem);
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    padding: 0 0.5rem;
  }
  
  .hero-icon-item {
    padding: 1.25rem;
    min-height: 80px;
    width: 100%;
    max-width: 100%;
  }
  
  .icon-badge {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  
  .frame-3d {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* Ensure all content fits mobile screens */
  .container {
    padding: 0 1.5rem;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .section {
    padding: 3rem 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix chip slider mobile overflow */
  .chip-slider {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.5rem 0;
    gap: 0.75rem;
  }
  
  .chip-large {
    flex-shrink: 0;
    min-width: max-content;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Fix product cards mobile layout */
  .product-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .product-card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    margin: 0;
    border-radius: 16px;
  }
  
  .product-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 12px;
    /* Images are properly cropped, no blend mode needed */
    filter: drop-shadow(0 8px 16px rgba(228, 196, 134, 0.2)) !important;
    transform: rotate(0deg) !important;
    transform-origin: center center !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    object-position: center !important;
    image-orientation: from-image 0deg !important;
    -webkit-image-orientation: none !important;
    transform-style: flat !important;
    perspective: none !important;
  }
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 0.625rem 1rem !important;
    font-size: 0.8rem !important;
    max-width: 140px !important;
  }
  
  .hero-title {
    font-size: clamp(3rem, 7vw, 4rem);
    padding-top: 45px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-icon-item {
    padding: 1rem;
    min-height: 75px;
  }
  
  .icon-badge {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }
  
  .frame-3d {
    max-width: 350px;
  }

  .hero-content-centered {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .story-box {
    padding: 2rem;
    margin: 0 1rem;
  }

  .story-box .section-description {
    font-size: 1rem;
  }

  .mission-vision-box {
    padding: 2rem;
    margin: 0 1rem;
  }

  .mission-vision-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .value-item {
    padding: 1.5rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  .value-title {
    font-size: 1.1rem;
  }

  .value-description {
    font-size: 0.9rem;
  }

  .cta-content {
    padding: 1.5rem;
  }

  .cta-content .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1.25rem;
  }

  .cta-content .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
  }

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

  .value-item {
    padding: 1.5rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  .value-title {
    font-size: 1.1rem;
  }

  .value-description {
    font-size: 0.9rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}

/* Hero Section - Centered */
.hero-content-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: var(--display-font);
  background: linear-gradient(135deg, #ffffff 0%, #e4c486 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: rgb(var(--gold));
  margin-bottom: 0.5rem;
  font-family: var(--display-font);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Content Icons */
.manufacturing-icon,
.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgb(var(--gold));
  background: linear-gradient(135deg, rgba(228, 196, 134, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-radius: 16px;
}

/* Story Box */
.story-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.story-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.story-box:hover::before {
  transform: scaleX(1);
}

.story-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-box .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.story-box .section-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.story-box .section-description:last-child {
  margin-bottom: 0;
}

/* Mission Vision Box */
.mission-vision-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-vision-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.mission-vision-box:hover::before {
  transform: scaleX(1);
}

.mission-vision-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-vision-box .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mission-vision-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.mission-section,
.vision-section {
  text-align: center;
}

.mission-section .card-icon,
.vision-section .card-icon {
  margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.cta-content .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-content .section-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all var(--transition-smooth);
  min-width: 160px;
  text-align: center;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, rgb(var(--gold)) 0%, #fbbf24 100%);
  color: #000;
  border: none;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(228, 196, 134, 0.3);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(228, 196, 134, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-radius: 16px;
  margin-bottom: 1rem;
  color: rgb(var(--gold));
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(var(--gold));
  margin-bottom: 0.75rem;
  font-family: var(--display-font);
}

.value-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Mission & Vision Section */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--gold)) 0%, #fbbf24 50%, rgb(var(--gold)) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.mission-card:hover::before,
.vision-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(228, 196, 134, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(228, 196, 134, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-radius: 20px;
  margin-bottom: 1rem;
  color: rgb(var(--gold));
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(var(--gold));
  margin-bottom: 0.75rem;
  font-family: var(--display-font);
}

.card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
