:root {
  /* Enhanced Color Palette - Light Theme Focus */
  --color-primary: #20807d;
  --color-primary-hover: #1d5d5b;
  --color-accent: #d4af37;
  --color-accent-light: #f0e68c;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-white: #ffffff;
  --color-cream: #fefdf9;
  --color-surface: #f9fafb;
  --color-border: rgba(212, 175, 55, 0.2);
  
  /* Enhanced Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", serif;
  
  /* Responsive Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Animations */
  --duration-fast: 0.2s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Mobile-First Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Enhanced Typography System for Better Readability */
html {
  scroll-behavior: smooth;
  font-size: 16px; /* Increased base font size for better readability */
  line-height: 1.6; /* Better line spacing */
}

/* Responsive typography scaling */
@media (min-width: 768px) {
  html { font-size: 18px; }
}

@media (min-width: 1024px) {
  html { font-size: 19px; }
}

/* Body text enhancements */
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Heading improvements */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 0.75em;
  color: #fff;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

/* Paragraph improvements */
p {
  margin-bottom: 1.25em;
  color: rgba(255, 255, 255, 0.85);
  max-width: 65ch; /* Optimal reading width */
}

/* Link improvements */
a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #ffd700;
}

/* Small text improvements */
small {
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Enhanced CSS Reset and Overflow Protection */
*, *::before, *::after {
  box-sizing: border-box;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

/* Prevent all elements from causing horizontal overflow */
img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Enhanced Responsive Design - Mobile First */
@media (max-width: 480px) {
  /* Extra small screens */
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .gemstones-grid {
    gap: 1rem;
  }
  
  .gem-card {
    padding: 1rem;
  }
  
  /* Enhanced touch targets for mobile */
  .btn, .nav-link, .gem-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .whatsapp-inquiry-btn {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  /* Small tablets */
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .gemstones-grid {
    gap: 1.5rem;
  }
}

/* Enhanced Section Typography and Readability */
p, .section-subtitle {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.87);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 60ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Improved readability for mobile */
@media (max-width: 768px) {
  p, .section-subtitle {
    line-height: 1.8;
    font-size: 1.1rem;
  }
}

/* Enhanced button styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

/* Enhanced Button Styling with Better CTAs */
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: white;
  box-shadow: 0 4px 15px rgba(32, 128, 125, 0.3);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(32, 128, 125, 0.4),
    0 0 20px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn--outline:hover::after {
  left: 0;
}

.btn--outline:hover {
  color: white;
  transform: translateY(-2px) scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 5px 15px rgba(32, 128, 125, 0.3);
}

/* Enhanced CTA Button Animations */
.cta-button {
  animation: cta-pulse 2s ease-in-out infinite;
  position: relative;
}

.cta-button::after {
  content: '✨';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(32, 128, 125, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

/* Gem Button Enhancements */
.gem-btn {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gem-btn:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: #ffd700;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Ensure main content maintains background */
main {
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Enhanced Mobile-First Header - STICKY NAVIGATION */
.royal-fixed-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.royal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  min-height: 65px;
}

@media (min-width: 768px) {
  .royal-nav {
    padding: 0.75rem 0;
    min-height: 80px;
  }
}

@media (min-width: 1024px) {
  .royal-nav {
    padding: 1rem 0;
    min-height: 90px;
  }
}

/* Enhanced Brand Section - Mobile First */
.royal-brand-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .royal-brand-section {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .royal-brand-section {
    gap: 1.5rem;
  }
}

/* Saturn System Logo - AstroSatvik.com Authentic Styles */
.logo-container { 
  display: flex; 
  align-items: center; 
}

.saturn-system {
  position: relative; 
  width: 40px; 
  height: 40px; 
  margin-right: 0.5rem; 
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .saturn-system {
    width: 45px; 
    height: 45px; 
    margin-right: 0.75rem;
  }
}

@media (min-width: 640px) {
  .saturn-system {
    width: 50px; 
    height: 50px; 
    margin-right: 1rem;
  }
}

@media (min-width: 768px) {
  .saturn-system {
    width: 55px; 
    height: 55px; 
    margin-right: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .saturn-system {
    width: 60px; 
    height: 60px; 
    margin-right: 1.5rem;
  }
}

.saturn-planet {
  position: absolute; 
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at 30% 30%, #f6f0b2, #d9b38c);
  border-radius: 50%; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(255, 255, 220, 0.6);
  animation: saturnPulse 2.5s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
  .saturn-planet {
    box-shadow: 0 0 10px rgba(255, 255, 220, 0.7);
  }
}

@keyframes saturnPulse { 
  from { transform: translate(-50%, -50%) scale(1); } 
  to { transform: translate(-50%, -50%) scale(1.08); } 
}

.tilted-ring {
  position: absolute; 
  width: 140%;
  height: 20%;
  background: linear-gradient(45deg, #e74c3c, #8e44ad, #2980b9);
  border-radius: 50%;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
  animation: rotateRing 10s linear infinite;
  box-shadow: 0 0 6px rgba(255, 100, 255, 0.5);
}

@media (min-width: 768px) {
  .tilted-ring {
    box-shadow: 0 0 8px rgba(255, 100, 255, 0.6);
  }
}

@keyframes rotateRing { 
  from { transform: translate(-50%, -50%) rotate(385deg); } 
  to { transform: translate(-50%, -50%) rotate(25deg); } 
}

.logo-name {
  font-family: var(--font-display); 
  font-weight: bold;
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(241, 196, 15, 0.7);
  font-size: 1.5rem;
}

.logo-name span { 
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease; 
}

.logo-name span:hover { 
  transform: translateY(-3px) scale(1.05); 
  color: var(--color-accent); 
}

/* Responsive Premium Solar System - All Screen Sizes */
@media (max-width: 768px) {
  .saturn-system { 
    width: 40px; 
    height: 40px; 
    margin-right: 10px;
  }
  .saturn-planet { 
    width: 25px; 
    height: 25px; 
  }
  .tilted-ring { 
    width: 60px; 
    height: 8px; 
  }
  
  /* Premium Solar System Mobile */
  .premium-solar-system {
    width: 60px;
    height: 60px;
    margin-right: 8px;
  }
  
  .central-sun { width: 10px; height: 10px; }
  .sun-core { width: 10px; height: 10px; }
  .sun-corona-layer { width: 14px; height: 14px; top: -2px; left: -2px; }
  .sun-flares { width: 18px; height: 18px; top: -4px; left: -4px; }
  
  .mercury-orbit { width: 18px; height: 18px; }
  .venus-orbit { width: 22px; height: 22px; }
  .earth-orbit { width: 26px; height: 26px; }
  .mars-orbit { width: 30px; height: 30px; }
  .jupiter-orbit { width: 36px; height: 36px; }
  .saturn-orbit { width: 40px; height: 40px; }
  .uranus-orbit { width: 44px; height: 44px; }
  .neptune-orbit { width: 48px; height: 48px; }
  .pluto-orbit { width: 52px; height: 52px; }
  
  .mercury { width: 1px; height: 1px; }
  .venus { width: 2px; height: 2px; }
  .earth { width: 2px; height: 2px; }
  .mars { width: 1px; height: 1px; }
  .jupiter { width: 3px; height: 3px; }
  .saturn { width: 2px; height: 2px; }
  .saturn-rings { width: 5px; height: 1px; left: -1.5px; }
  .uranus { width: 2px; height: 2px; }
  .neptune { width: 2px; height: 2px; }
  .pluto { width: 1px; height: 1px; }
  
  .logo-name { 
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Premium Solar System Tablet */
  .premium-solar-system {
    width: 70px;
    height: 70px;
    margin-right: 12px;
  }
  
  .central-sun { width: 12px; height: 12px; }
  .sun-core { width: 12px; height: 12px; }
  .sun-corona-layer { width: 18px; height: 18px; top: -3px; left: -3px; }
  .sun-flares { width: 20px; height: 20px; top: -4px; left: -4px; }
  
  .mercury-orbit { width: 22px; height: 22px; }
  .venus-orbit { width: 26px; height: 26px; }
  .earth-orbit { width: 30px; height: 30px; }
  .mars-orbit { width: 34px; height: 34px; }
  .jupiter-orbit { width: 42px; height: 42px; }
  .saturn-orbit { width: 46px; height: 46px; }
  .uranus-orbit { width: 50px; height: 50px; }
  .neptune-orbit { width: 54px; height: 54px; }
  .pluto-orbit { width: 58px; height: 58px; }
  
  .jupiter { width: 4px; height: 4px; }
  .saturn { width: 3px; height: 3px; }
  .saturn-rings { width: 6px; height: 1px; left: -1.5px; }
  
  .logo-name { 
    font-size: 1.6rem;
  }
}

@media (min-width: 1025px) {
  /* Premium Solar System Desktop */
  .premium-solar-system {
    width: 90px;
    height: 90px;
    margin-right: 18px;
  }
  
  .central-sun { width: 16px; height: 16px; }
  .sun-core { width: 16px; height: 16px; }
  .sun-corona-layer { width: 22px; height: 22px; top: -3px; left: -3px; }
  .sun-flares { width: 26px; height: 26px; top: -5px; left: -5px; }
  
  .mercury-orbit { width: 28px; height: 28px; }
  .venus-orbit { width: 34px; height: 34px; }
  .earth-orbit { width: 40px; height: 40px; }
  .mars-orbit { width: 46px; height: 46px; }
  .jupiter-orbit { width: 58px; height: 58px; }
  .saturn-orbit { width: 64px; height: 64px; }
  .uranus-orbit { width: 70px; height: 70px; }
  .neptune-orbit { width: 76px; height: 76px; }
  .pluto-orbit { width: 82px; height: 82px; }
  
  .mercury { width: 3px; height: 3px; }
  .venus { width: 4px; height: 4px; }
  .earth { width: 4px; height: 4px; }
  .mars { width: 3px; height: 3px; }
  .jupiter { width: 6px; height: 6px; }
  .saturn { width: 5px; height: 5px; }
  .saturn-rings { width: 10px; height: 2px; top: 1.5px; left: -2.5px; }
  .uranus { width: 4px; height: 4px; }
  .neptune { width: 4px; height: 4px; }
  .pluto { width: 2px; height: 2px; }
  
  .logo-name { 
    font-size: 1.8rem;
  }
}

/* Premium Solar System Logo - Light Theme Enhanced Mobile First */
.premium-solar-system {
  position: relative;
  width: 90px;
  height: 90px;
  margin-right: 0.75rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 
    0 0 10px rgba(200, 220, 255, 0.3), 
    inset 0 0 8px rgba(240, 248, 255, 0.25),
    0 0 2px rgba(180, 180, 180, 0.15);
  border: 1px solid rgba(200, 200, 200, 0.25);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .premium-solar-system {
    width: 110px;
    height: 110px;
    margin-right: 1rem;
    border: 2px solid rgba(200, 200, 200, 0.3);
    box-shadow: 
      0 0 12px rgba(200, 220, 255, 0.35), 
      inset 0 0 9px rgba(240, 248, 255, 0.28),
      0 0 2px rgba(180, 180, 180, 0.18);
  }
}

@media (min-width: 1024px) {
  .premium-solar-system {
    width: 120px;
    height: 120px;
    margin-right: 1.25rem;
    box-shadow: 
      0 0 15px rgba(200, 220, 255, 0.4), 
      inset 0 0 10px rgba(240, 248, 255, 0.3),
      0 0 2px rgba(180, 180, 180, 0.2);
  }
}

.cosmic-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.star {
  position: absolute;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 50%;
  animation: starTwinkle 2s ease-in-out infinite alternate;
  box-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}

.star-1 { width: 2px; height: 2px; top: 15px; left: 20px; animation-delay: 0s; }
.star-2 { width: 1px; height: 1px; top: 25px; right: 15px; animation-delay: 0.5s; }
.star-3 { width: 2px; height: 2px; bottom: 20px; left: 25px; animation-delay: 1s; }
.star-4 { width: 1px; height: 1px; bottom: 30px; right: 20px; animation-delay: 1.5s; }
.star-5 { width: 1px; height: 1px; top: 35px; left: 50%; animation-delay: 0.3s; }

@keyframes starTwinkle {
  from { opacity: 0.3; transform: scale(1); }
  to { opacity: 1; transform: scale(1.2); }
}

.central-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .central-sun {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1024px) {
  .central-sun {
    width: 20px;
    height: 20px;
  }
}

.central-sun:hover {
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(1.2);
}

.sun-core {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, #ffff99, #ffcc00, #ff8800, #cc4400);
  border-radius: 50%;
  box-shadow: 
    0 0 12px rgba(255, 136, 0, 1), 
    0 0 20px rgba(255, 204, 0, 0.8),
    0 0 28px rgba(255, 165, 0, 0.4);
  animation: sunPulsate 4s ease-in-out infinite;
  border: 2px solid rgba(255, 140, 0, 0.9);
}

@media (min-width: 768px) {
  .sun-core {
    box-shadow: 
      0 0 13px rgba(255, 136, 0, 1), 
      0 0 22px rgba(255, 204, 0, 0.8),
      0 0 30px rgba(255, 165, 0, 0.4);
  }
}

@media (min-width: 1024px) {
  .sun-core {
    box-shadow: 
      0 0 15px rgba(255, 136, 0, 1), 
      0 0 25px rgba(255, 204, 0, 0.8),
      0 0 35px rgba(255, 165, 0, 0.4);
  }
}

.sun-corona-layer {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, transparent 60%, rgba(255, 215, 0, 0.2) 70%, transparent 85%);
  border-radius: 50%;
  animation: coronaRotate 20s linear infinite;
}

.sun-flares {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle, rgba(255, 100, 0, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  animation: solarFlareFlicker 3s ease-in-out infinite alternate;
}

@keyframes sunPulsate {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes coronaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes solarFlareFlicker {
  from { opacity: 0.2; }
  to { opacity: 0.6; }
}

.planetary-system {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.planet-orbit {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(100, 100, 100, 0.3);
  box-shadow: 0 0 1px rgba(150, 150, 150, 0.2);
}

/* Mercury Orbit */
.mercury-orbit {
  width: 35px;
  height: 35px;
  animation: orbitRotation 8s linear infinite;
}

/* Venus Orbit */
.venus-orbit {
  width: 42px;
  height: 42px;
  animation: orbitRotation 12s linear infinite;
}

/* Earth Orbit */
.earth-orbit {
  width: 50px;
  height: 50px;
  animation: orbitRotation 16s linear infinite;
}

/* Mars Orbit */
.mars-orbit {
  width: 58px;
  height: 58px;
  animation: orbitRotation 20s linear infinite;
}

/* Jupiter Orbit */
.jupiter-orbit {
  width: 72px;
  height: 72px;
  animation: orbitRotation 28s linear infinite;
}

/* Saturn Orbit */
.saturn-orbit {
  width: 80px;
  height: 80px;
  animation: orbitRotation 32s linear infinite;
}

/* Uranus Orbit */
.uranus-orbit {
  width: 88px;
  height: 88px;
  animation: orbitRotation 36s linear infinite;
}

/* Neptune Orbit */
.neptune-orbit {
  width: 96px;
  height: 96px;
  animation: orbitRotation 40s linear infinite;
}

/* Pluto Orbit */
.pluto-orbit {
  width: 104px;
  height: 104px;
  animation: orbitRotation 44s linear infinite;
}

@keyframes orbitRotation {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.planet {
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.planet:hover {
  transform: translateX(-50%) scale(1.3);
  filter: brightness(1.2);
  z-index: 20;
}

/* Central Sun Click Effect */
.central-sun {
  cursor: pointer;
  transition: all 0.3s ease;
}

.central-sun:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Planet Highlight Animation for Gemstone Cards */
@keyframes planetHighlight {
  0% { 
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 20px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
  }
  100% { 
    box-shadow: 0 0 0 40px rgba(255, 215, 0, 0);
    transform: scale(1);
  }
}

.gemstone-card.planet-highlight {
  animation: planetHighlight 1s ease-out;
  border: 2px solid #ffd700 !important;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05)) !important;
}

/* Enhanced Planets - Light Theme with Mobile-First Responsive Visibility */

/* Mercury - Enhanced gray rocky planet with strong borders */
.mercury {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 25% 25%, #f0f0f0, #d3d3d3, #a0a0a0, #707070);
  box-shadow: 
    0 0 6px rgba(160, 160, 160, 0.8),
    inset -1px -1px 3px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(112, 112, 112, 0.9);
}

@media (min-width: 768px) {
  .mercury {
    width: 12px;
    height: 12px;
    box-shadow: 
      0 0 7px rgba(160, 160, 160, 0.8),
      inset -2px -2px 3px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 1024px) {
  .mercury {
    width: 14px;
    height: 14px;
    box-shadow: 
      0 0 8px rgba(160, 160, 160, 0.8),
      inset -2px -2px 4px rgba(0, 0, 0, 0.2);
  }
}

/* Venus - Enhanced bright golden planet with strong glow */
.venus {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 25% 25%, #ffff99, #ffd700, #ffc649, #ff8c00);
  box-shadow: 
    0 0 8px rgba(255, 198, 73, 1),
    0 0 12px rgba(255, 215, 0, 0.7),
    inset -1px -1px 3px rgba(255, 140, 0, 0.4);
  border: 2px solid rgba(255, 140, 0, 1);
}

@media (min-width: 768px) {
  .venus {
    width: 14px;
    height: 14px;
    box-shadow: 
      0 0 9px rgba(255, 198, 73, 1),
      0 0 13px rgba(255, 215, 0, 0.7),
      inset -2px -2px 3px rgba(255, 140, 0, 0.4);
  }
}

@media (min-width: 1024px) {
  .venus {
    width: 16px;
    height: 16px;
    box-shadow: 
      0 0 10px rgba(255, 198, 73, 1),
      0 0 15px rgba(255, 215, 0, 0.7),
      inset -2px -2px 4px rgba(255, 140, 0, 0.4);
  }
}

/* Earth - Enhanced blue-green planet with strong contrast */
.earth {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 25% 25%, #87ceeb, #6b93d6, #228b22, #006400, #003d00);
  box-shadow: 
    0 0 8px rgba(75, 175, 80, 1),
    0 0 12px rgba(107, 147, 214, 0.6),
    inset -1px -1px 3px rgba(0, 61, 0, 0.4);
  border: 2px solid rgba(34, 139, 34, 1);
  position: relative;
}

@media (min-width: 768px) {
  .earth {
    width: 14px;
    height: 14px;
    box-shadow: 
      0 0 9px rgba(75, 175, 80, 1),
      0 0 13px rgba(107, 147, 214, 0.6),
      inset -2px -2px 3px rgba(0, 61, 0, 0.4);
  }
}

@media (min-width: 1024px) {
  .earth {
    width: 16px;
    height: 16px;
    box-shadow: 
      0 0 10px rgba(75, 175, 80, 1),
      0 0 15px rgba(107, 147, 214, 0.6),
      inset -2px -2px 4px rgba(0, 61, 0, 0.4);
  }
}

.earth-moon {
  position: absolute;
  width: 5px;
  height: 5px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #e8e8e8, #c0c0c0);
  border-radius: 50%;
  border: 1px solid rgba(128, 128, 128, 1);
  top: -6px;
  left: 6px;
  animation: moonOrbit 4s linear infinite;
  box-shadow: 0 0 3px rgba(220, 220, 220, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
}

@media (min-width: 768px) {
  .earth-moon {
    width: 6px;
    height: 6px;
    top: -7px;
    left: 7px;
    border: 2px solid rgba(128, 128, 128, 1);
    box-shadow: 0 0 4px rgba(220, 220, 220, 0.9);
  }
}

@media (min-width: 1024px) {
  .earth-moon {
    width: 7px;
    height: 7px;
    top: -8px;
    left: 8px;
    box-shadow: 0 0 5px rgba(220, 220, 220, 0.9);
  }
}

.earth-moon:hover {
  transform: scale(1.5);
  filter: brightness(1.3);
  box-shadow: 0 0 8px rgba(220, 220, 220, 1);
  z-index: 25;
}

@keyframes moonOrbit {
  from { transform: rotate(0deg) translateX(12px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(12px) rotate(-360deg); }
}

@media (min-width: 768px) {
  @keyframes moonOrbit {
    from { transform: rotate(0deg) translateX(13px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(13px) rotate(-360deg); }
  }
}

@media (min-width: 1024px) {
  @keyframes moonOrbit {
    from { transform: rotate(0deg) translateX(15px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(15px) rotate(-360deg); }
  }
}

/* Mars - Enhanced red planet with strong visibility */
.mars {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 25% 25%, #ff8c69, #ff6b47, #cd5c5c, #8b0000, #4a0000);
  box-shadow: 
    0 0 6px rgba(255, 107, 71, 1),
    0 0 9px rgba(205, 92, 92, 0.6),
    inset -1px -1px 3px rgba(74, 0, 0, 0.4);
  border: 2px solid rgba(139, 0, 0, 1);
}

@media (min-width: 768px) {
  .mars {
    width: 12px;
    height: 12px;
    box-shadow: 
      0 0 7px rgba(255, 107, 71, 1),
      0 0 10px rgba(205, 92, 92, 0.6),
      inset -2px -2px 3px rgba(74, 0, 0, 0.4);
  }
}

@media (min-width: 1024px) {
  .mars {
    width: 14px;
    height: 14px;
    box-shadow: 
      0 0 8px rgba(255, 107, 71, 1),
      0 0 12px rgba(205, 92, 92, 0.6),
      inset -2px -2px 4px rgba(74, 0, 0, 0.4);
  }
}

/* Jupiter - Large enhanced gas giant with bands */
.jupiter {
  width: 16px;
  height: 16px;
  background: 
    linear-gradient(0deg, transparent 0%, rgba(205, 133, 63, 0.4) 25%, transparent 35%, rgba(184, 134, 11, 0.4) 65%, transparent 75%, rgba(139, 69, 19, 0.4) 100%),
    radial-gradient(circle at 25% 25%, #deb887, #d2691e, #daa520, #b8860b, #8b4513);
  box-shadow: 
    0 0 8px rgba(218, 165, 32, 1),
    0 0 12px rgba(210, 105, 30, 0.7),
    inset -2px -2px 4px rgba(139, 69, 19, 0.4);
  border: 2px solid rgba(184, 134, 11, 1);
}

@media (min-width: 768px) {
  .jupiter {
    width: 19px;
    height: 19px;
    box-shadow: 
      0 0 9px rgba(218, 165, 32, 1),
      0 0 13px rgba(210, 105, 30, 0.7),
      inset -2px -2px 4px rgba(139, 69, 19, 0.4);
  }
}

@media (min-width: 1024px) {
  .jupiter {
    width: 22px;
    height: 22px;
    box-shadow: 
      0 0 10px rgba(218, 165, 32, 1),
      0 0 15px rgba(210, 105, 30, 0.7),
      inset -3px -3px 5px rgba(139, 69, 19, 0.4);
  }
}

/* Saturn - Enhanced ringed planet with detailed rings */
.saturn {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 25% 25%, #fff8dc, #ffd700, #f4a460, #daa520, #b8860b);
  box-shadow: 
    0 0 7px rgba(244, 164, 96, 1),
    0 0 10px rgba(255, 215, 0, 0.6),
    inset -2px -2px 3px rgba(184, 134, 11, 0.3);
  border: 2px solid rgba(218, 165, 32, 1);
  position: relative;
}

@media (min-width: 768px) {
  .saturn {
    width: 16px;
    height: 16px;
    box-shadow: 
      0 0 8px rgba(244, 164, 96, 1),
      0 0 11px rgba(255, 215, 0, 0.6),
      inset -2px -2px 3px rgba(184, 134, 11, 0.3);
  }
}

@media (min-width: 1024px) {
  .saturn {
    width: 18px;
    height: 18px;
    box-shadow: 
      0 0 9px rgba(244, 164, 96, 1),
      0 0 12px rgba(255, 215, 0, 0.6),
      inset -2px -2px 4px rgba(184, 134, 11, 0.3);
  }
}

.saturn-rings {
  position: absolute;
  width: 26px;
  height: 6px;
  top: 4px;
  left: -6px;
  border: 2px solid rgba(255, 215, 0, 1);
  border-radius: 50%;
  transform: perspective(25px) rotateX(60deg);
  animation: saturnRingRotate 8s linear infinite;
  box-shadow: 
    0 0 4px rgba(255, 215, 0, 0.7),
    inset 0 0 3px rgba(255, 165, 0, 0.5);
}

@media (min-width: 768px) {
  .saturn-rings {
    width: 30px;
    height: 7px;
    top: 4.5px;
    left: -7px;
    box-shadow: 
      0 0 5px rgba(255, 215, 0, 0.7),
      inset 0 0 3px rgba(255, 165, 0, 0.5);
  }
}

@media (min-width: 1024px) {
  .saturn-rings {
    width: 34px;
    height: 8px;
    top: 5px;
    left: -8px;
    transform: perspective(30px) rotateX(60deg);
    box-shadow: 
      0 0 6px rgba(255, 215, 0, 0.7),
      inset 0 0 4px rgba(255, 165, 0, 0.5);
  }
}

.saturn-rings::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 3px;
  top: 1.5px;
  left: 5px;
  border: 1px solid rgba(255, 140, 0, 0.8);
  border-radius: 50%;
  transform: scale(0.7);
}

@media (min-width: 768px) {
  .saturn-rings::before {
    width: 18px;
    height: 3.5px;
    top: 1.75px;
    left: 6px;
  }
}

@media (min-width: 1024px) {
  .saturn-rings::before {
    width: 22px;
    height: 4px;
    top: 2px;
    left: 6px;
  }
}

@keyframes saturnRingRotate {
  from { transform: perspective(25px) rotateX(60deg) rotate(0deg); }
  to { transform: perspective(25px) rotateX(60deg) rotate(360deg); }
}

@media (min-width: 1024px) {
  @keyframes saturnRingRotate {
    from { transform: perspective(30px) rotateX(60deg) rotate(0deg); }
    to { transform: perspective(30px) rotateX(60deg) rotate(360deg); }
  }
}

/* Uranus - Enhanced ice giant with unique color */
.uranus {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 25% 25%, #87ceeb, #4fd0e3, #40e0d0, #00ced1, #008b8b);
  box-shadow: 
    0 0 7px rgba(64, 224, 208, 1),
    0 0 10px rgba(79, 208, 227, 0.6),
    inset -2px -2px 3px rgba(0, 139, 139, 0.4);
  border: 2px solid rgba(0, 206, 209, 1);
}

@media (min-width: 768px) {
  .uranus {
    width: 14px;
    height: 14px;
    box-shadow: 
      0 0 8px rgba(64, 224, 208, 1),
      0 0 11px rgba(79, 208, 227, 0.6),
      inset -2px -2px 3px rgba(0, 139, 139, 0.4);
  }
}

@media (min-width: 1024px) {
  .uranus {
    width: 16px;
    height: 16px;
    box-shadow: 
      0 0 9px rgba(64, 224, 208, 1),
      0 0 12px rgba(79, 208, 227, 0.6),
      inset -2px -2px 4px rgba(0, 139, 139, 0.4);
  }
}

/* Neptune - Enhanced deep blue ice giant */
.neptune {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 25% 25%, #6495ed, #4169e1, #0000ff, #191970, #000080);
  box-shadow: 
    0 0 7px rgba(65, 105, 225, 1),
    0 0 10px rgba(25, 25, 112, 0.7),
    inset -2px -2px 3px rgba(0, 0, 128, 0.4);
  border: 2px solid rgba(25, 25, 112, 1);
}

@media (min-width: 768px) {
  .neptune {
    width: 14px;
    height: 14px;
    box-shadow: 
      0 0 8px rgba(65, 105, 225, 1),
      0 0 11px rgba(25, 25, 112, 0.7),
      inset -2px -2px 3px rgba(0, 0, 128, 0.4);
  }
}

@media (min-width: 1024px) {
  .neptune {
    width: 16px;
    height: 16px;
    box-shadow: 
      0 0 9px rgba(65, 105, 225, 1),
      0 0 12px rgba(25, 25, 112, 0.7),
      inset -2px -2px 4px rgba(0, 0, 128, 0.4);
  }
}

/* Pluto - Enhanced small dwarf planet */
.pluto {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 25% 25%, #f5deb3, #deb887, #d2691e, #8b4513, #654321);
  box-shadow: 
    0 0 4px rgba(222, 184, 135, 1),
    0 0 7px rgba(210, 105, 30, 0.6),
    inset -1px -1px 2px rgba(101, 67, 33, 0.4);
  border: 2px solid rgba(139, 69, 19, 1);
}

@media (min-width: 768px) {
  .pluto {
    width: 10px;
    height: 10px;
    box-shadow: 
      0 0 5px rgba(222, 184, 135, 1),
      0 0 8px rgba(210, 105, 30, 0.6),
      inset -2px -2px 2px rgba(101, 67, 33, 0.4);
  }
}

@media (min-width: 1024px) {
  .pluto {
    width: 12px;
    height: 12px;
    box-shadow: 
      0 0 6px rgba(222, 184, 135, 1),
      0 0 9px rgba(210, 105, 30, 0.6),
      inset -2px -2px 3px rgba(101, 67, 33, 0.4);
  }
}

/* Mobile-Optimized Planetary System - Proper Sizing */

.sun-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.3), transparent, rgba(255, 215, 0, 0.3));
  border-radius: 50%;
  animation: rayRotate 8s linear infinite;
}

@media (min-width: 768px) {
  .sun-rays {
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 1024px) {
  .sun-rays {
    width: 40px;
    height: 40px;
  }
}

.royal-orbit {
  position: absolute;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.royal-planet {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: -2.5px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (min-width: 768px) {
  .royal-planet {
    width: 6px;
    height: 6px;
    top: -3px;
  }
}

@media (min-width: 1024px) {
  .royal-planet {
    width: 8px;
    height: 8px;
    top: -4px;
  }
}

.planet-aura {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

@media (min-width: 1024px) {
  .planet-aura {
    width: 16px;
    height: 16px;
  }
}

.royal-planet:hover .planet-aura {
  opacity: 1;
  animation: auraGlow 2s ease-in-out infinite;
}

/* Mobile-First Orbit Sizes */
.orbit-ruby { width: 20px; height: 20px; animation: orbitRotate 8s linear infinite; }
.orbit-pearl { width: 24px; height: 24px; animation: orbitRotate 10s linear infinite; }
.orbit-coral { width: 28px; height: 28px; animation: orbitRotate 12s linear infinite; }
.orbit-emerald { width: 32px; height: 32px; animation: orbitRotate 14s linear infinite; }
.orbit-sapphire { width: 36px; height: 36px; animation: orbitRotate 16s linear infinite; }
.orbit-diamond { width: 40px; height: 40px; animation: orbitRotate 18s linear infinite; }

@media (min-width: 768px) {
  .orbit-ruby { width: 30px; height: 30px; }
  .orbit-pearl { width: 36px; height: 36px; }
  .orbit-coral { width: 42px; height: 42px; }
  .orbit-emerald { width: 48px; height: 48px; }
  .orbit-sapphire { width: 54px; height: 54px; }
  .orbit-diamond { width: 60px; height: 60px; }
  .orbit-blue-sapphire { width: 66px; height: 66px; animation: orbitRotate 20s linear infinite; }
  .orbit-hessonite { width: 72px; height: 72px; animation: orbitRotate 22s linear infinite; }
  .orbit-cats-eye { width: 78px; height: 78px; animation: orbitRotate 24s linear infinite; }
}

@media (min-width: 1024px) {
  .orbit-ruby { width: 40px; height: 40px; }
  .orbit-pearl { width: 50px; height: 50px; }
  .orbit-coral { width: 60px; height: 60px; }
  .orbit-emerald { width: 70px; height: 70px; }
  .orbit-sapphire { width: 80px; height: 80px; }
  .orbit-diamond { width: 90px; height: 90px; }
  .orbit-blue-sapphire { width: 100px; height: 100px; }
  .orbit-hessonite { width: 110px; height: 110px; }
  .orbit-cats-eye { width: 120px; height: 120px; }
}

/* Planet Colors */
.planet-ruby { background: #dc143c; }
.planet-pearl { background: #f8f8ff; border: 1px solid #ddd; }
.planet-coral { background: #ff4500; }
.planet-emerald { background: #50c878; }
.planet-sapphire { background: #ffd700; }
.planet-diamond { background: #b9f2ff; }
.planet-blue-sapphire { background: #0f52ba; }
.planet-hessonite { background: #cd853f; }
.planet-cats-eye { background: #a0522d; }

/* Enhanced Brand Identity - Mobile First */
.royal-brand-identity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .royal-brand-identity {
    gap: 0.5rem;
  }
}

.brand-collaboration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .brand-collaboration {
    font-size: 1.125rem;
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .brand-collaboration {
    font-size: 1.25rem;
  }
}

.primary-brand {
  color: var(--color-primary);
  font-family: var(--font-display);
}

.collaboration-symbol {
  color: var(--color-accent);
  font-weight: 700;
}

.partner-brand {
  color: var(--color-text);
}

/* Enhanced Planetary System for AstroSatvik Logo - Mobile-First */
.enhanced-planetary-system {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .enhanced-planetary-system {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .enhanced-planetary-system {
    width: 120px;
    height: 120px;
  }
}

/* Royal Crown Overlay */
.royal-crown-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.crown-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
  border-radius: 50%;
  border: 2px solid #D4AF37;
  box-shadow: 
    0 0 20px rgba(212, 175, 55, 0.6),
    inset 0 2px 5px rgba(255, 215, 0, 0.8);
  animation: crownPulse 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .crown-symbol {
    width: 40px;
    height: 40px;
  }
  
  .crown-symbol svg {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .crown-symbol {
    width: 48px;
    height: 48px;
  }
  
  .crown-symbol svg {
    width: 38px;
    height: 38px;
  }
}

@keyframes crownPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 0 20px rgba(212, 175, 55, 0.6),
      inset 0 2px 5px rgba(255, 215, 0, 0.8);
  }
  50% { 
    transform: scale(1.1);
    box-shadow: 
      0 0 30px rgba(212, 175, 55, 0.8),
      inset 0 2px 8px rgba(255, 215, 0, 1);
  }
}

/* Celestial Sun */
.celestial-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #FFD700 0%, #FFA500 40%, #FF8C00 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 40px rgba(255, 215, 0, 0.6),
    inset 0 0 20px rgba(255, 165, 0, 0.8);
  animation: sunRotate 20s linear infinite;
  z-index: 1;
}

@media (min-width: 768px) {
  .celestial-sun {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .celestial-sun {
    width: 72px;
    height: 72px;
  }
}

.sun-rays {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: conic-gradient(from 0deg, transparent, #FFD700, transparent, #FFA500, transparent);
  border-radius: 50%;
  animation: raysRotate 15s linear infinite reverse;
  opacity: 0.7;
}

@keyframes sunRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes raysRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Royal Orbits - Mobile First Sizing */
.royal-orbit {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 20s linear infinite;
}

/* Mobile-First Orbit Sizes */
.orbit-ruby { width: 140px; height: 140px; animation-duration: 8s; }
.orbit-pearl { width: 160px; height: 160px; animation-duration: 10s; }
.orbit-coral { width: 180px; height: 180px; animation-duration: 12s; }
.orbit-emerald { width: 200px; height: 200px; animation-duration: 14s; }
.orbit-sapphire { width: 220px; height: 220px; animation-duration: 16s; }
.orbit-diamond { width: 240px; height: 240px; animation-duration: 18s; }
.orbit-blue-sapphire { width: 260px; height: 260px; animation-duration: 20s; }
.orbit-hessonite { width: 280px; height: 280px; animation-duration: 22s; }
.orbit-cats-eye { width: 300px; height: 300px; animation-duration: 24s; }

/* Tablet Sizes */
@media (min-width: 768px) {
  .orbit-ruby { width: 180px; height: 180px; }
  .orbit-pearl { width: 200px; height: 200px; }
  .orbit-coral { width: 220px; height: 220px; }
  .orbit-emerald { width: 240px; height: 240px; }
  .orbit-sapphire { width: 260px; height: 260px; }
  .orbit-diamond { width: 280px; height: 280px; }
  .orbit-blue-sapphire { width: 300px; height: 300px; }
  .orbit-hessonite { width: 320px; height: 320px; }
  .orbit-cats-eye { width: 340px; height: 340px; }
}

/* Desktop Sizes */
@media (min-width: 1024px) {
  .orbit-ruby { width: 220px; height: 220px; }
  .orbit-pearl { width: 250px; height: 250px; }
  .orbit-coral { width: 280px; height: 280px; }
  .orbit-emerald { width: 310px; height: 310px; }
  .orbit-sapphire { width: 340px; height: 340px; }
  .orbit-diamond { width: 370px; height: 370px; }
  .orbit-blue-sapphire { width: 400px; height: 400px; }
  .orbit-hessonite { width: 430px; height: 430px; }
  .orbit-cats-eye { width: 460px; height: 460px; }
}

@keyframes orbitRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Royal Planets */
.royal-planet {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .royal-planet {
    width: 16px;
    height: 16px;
    top: -8px;
  }
}

@media (min-width: 1024px) {
  .royal-planet {
    width: 20px;
    height: 20px;
    top: -10px;
  }
}

/* Individual Planet Colors */
.planet-ruby { background: radial-gradient(circle, #E0115F, #8B0000); }
.planet-pearl { background: radial-gradient(circle, #F8F8FF, #E6E6FA); }
.planet-coral { background: radial-gradient(circle, #FF7F50, #CD5C5C); }
.planet-emerald { background: radial-gradient(circle, #50C878, #228B22); }
.planet-sapphire { background: radial-gradient(circle, #FFFF00, #FFD700); }
.planet-diamond { background: radial-gradient(circle, #B9F2FF, #87CEEB); }
.planet-blue-sapphire { background: radial-gradient(circle, #0F52BA, #000080); }
.planet-hessonite { background: radial-gradient(circle, #FF8C69, #A0522D); }
.planet-cats-eye { background: radial-gradient(circle, #9ACD32, #556B2F); }

.planet-aura {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .planet-aura {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1024px) {
  .planet-aura {
    width: 36px;
    height: 36px;
  }
}

.royal-planet:hover .planet-aura {
  opacity: 1;
  animation: auraGlow 2s ease-in-out infinite;
}

@keyframes auraGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0.3; }
}

/* Planet-specific auras */
.planet-ruby .planet-aura { background: radial-gradient(circle, rgba(224, 17, 95, 0.4), transparent); }
.planet-pearl .planet-aura { background: radial-gradient(circle, rgba(248, 248, 255, 0.6), transparent); }
.planet-coral .planet-aura { background: radial-gradient(circle, rgba(255, 127, 80, 0.4), transparent); }
.planet-emerald .planet-aura { background: radial-gradient(circle, rgba(80, 200, 120, 0.4), transparent); }
.planet-sapphire .planet-aura { background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent); }
.planet-diamond .planet-aura { background: radial-gradient(circle, rgba(185, 242, 255, 0.6), transparent); }
.planet-blue-sapphire .planet-aura { background: radial-gradient(circle, rgba(15, 82, 186, 0.4), transparent); }
.planet-hessonite .planet-aura { background: radial-gradient(circle, rgba(255, 140, 105, 0.4), transparent); }
.planet-cats-eye .planet-aura { background: radial-gradient(circle, rgba(154, 205, 50, 0.4), transparent); }

/* AstroSatvik Logo Wrapper - Mobile First Responsive Design */
.astro-logo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, rgba(32, 128, 125, 0.08) 0%, rgba(139, 115, 85, 0.08) 100%);
  border-radius: 15px;
  border: 1px solid rgba(var(--color-primary), 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  min-width: 200px;
  max-width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .astro-logo-wrapper {
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    min-width: 240px;
  }
}

@media (min-width: 640px) {
  .astro-logo-wrapper {
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    min-width: 280px;
  }
}

@media (min-width: 768px) {
  .astro-logo-wrapper {
    gap: 1.5rem;
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 2px solid rgba(var(--color-primary), 0.15);
    min-width: 320px;
  }
}

@media (min-width: 1024px) {
  .astro-logo-wrapper {
    gap: 2rem;
    padding: 2.5rem 2rem;
    min-width: 360px;
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .astro-logo-wrapper {
    gap: 2.5rem;
    padding: 3rem 2.5rem;
    min-width: 400px;
  }
}

.astro-logo-wrapper:hover {
  box-shadow: 
    0 8px 25px rgba(32, 128, 125, 0.15),
    0 3px 15px rgba(139, 115, 85, 0.08);
  transform: translateY(-2px);
  border-color: rgba(var(--color-primary), 0.25);
}

@media (min-width: 768px) {
  .astro-logo-wrapper:hover {
    box-shadow: 
      0 12px 35px rgba(32, 128, 125, 0.18),
      0 4px 20px rgba(139, 115, 85, 0.1);
    transform: translateY(-3px);
    border-color: rgba(var(--color-primary), 0.3);
  }
}

.brand-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
  text-shadow: 0 1px 6px rgba(32, 128, 125, 0.25);
  letter-spacing: -0.02em;
  text-align: center;
  z-index: 20;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .brand-logo {
    font-size: 1.4rem;
    font-weight: 750;
  }
}

@media (min-width: 640px) {
  .brand-logo {
    font-size: 1.6rem;
    font-weight: 800;
  }
}

@media (min-width: 768px) {
  .brand-logo {
    font-size: 1.8rem;
    text-shadow: 0 2px 8px rgba(32, 128, 125, 0.3);
  }
}

@media (min-width: 1024px) {
  .brand-logo {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .brand-logo {
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(32, 128, 125, 0.3);
  }
}

/* REYVA Logo Enhancement - Mobile First Responsive Design */
.reyva-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  max-width: 100%;
}

@media (min-width: 480px) {
  .reyva-logo-wrapper {
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    min-width: 240px;
  }
}

@media (min-width: 640px) {
  .reyva-logo-wrapper {
    flex-direction: row;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    min-width: 280px;
  }
}

@media (min-width: 768px) {
  .reyva-logo-wrapper {
    gap: 1.5rem;
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    min-width: 320px;
  }
}

@media (min-width: 1024px) {
  .reyva-logo-wrapper {
    gap: 2rem;
    padding: 2.5rem 2rem;
    min-width: 360px;
  }
}

@media (min-width: 1200px) {
  .reyva-logo-wrapper {
    gap: 2.5rem;
    padding: 3rem 2.5rem;
    min-width: 400px;
  }
}

.reyva-logo-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

@media (min-width: 768px) {
  .reyva-logo-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
  }
}

.reyva-logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .reyva-logo-image {
    width: 70px;
    height: 70px;
    border-radius: 13px;
  }
}

@media (min-width: 640px) {
  .reyva-logo-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.18);
  }
}

@media (min-width: 768px) {
  .reyva-logo-image {
    width: 90px;
    height: 90px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  }
}

@media (min-width: 1024px) {
  .reyva-logo-image {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }
}

@media (min-width: 1200px) {
  .reyva-logo-image {
    width: 120px;
    height: 120px;
  }
}

.reyva-logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.6);
}

.reyva-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: center;
  min-width: 0;
}

@media (min-width: 640px) {
  .reyva-logo-text {
    text-align: left;
  }
}

.reyva-main {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
  text-shadow: 0 1px 8px rgba(32, 128, 125, 0.25);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .reyva-main {
    font-size: 1.6rem;
    font-weight: 750;
  }
}

@media (min-width: 640px) {
  .reyva-main {
    font-size: 1.8rem;
    font-weight: 800;
  }
}

@media (min-width: 768px) {
  .reyva-main {
    font-size: 2rem;
    text-shadow: 0 2px 12px rgba(32, 128, 125, 0.28);
  }
}

@media (min-width: 1024px) {
  .reyva-main {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .reyva-main {
    font-size: 2.5rem;
    text-shadow: 0 2px 15px rgba(32, 128, 125, 0.3);
  }
}

.reyva-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(212, 175, 55, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .reyva-sub {
    font-size: 0.8rem;
  }
}

@media (min-width: 640px) {
  .reyva-sub {
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .reyva-sub {
    font-size: 0.9rem;
    font-weight: 550;
  }
}

@media (min-width: 1024px) {
  .reyva-sub {
    font-size: 1rem;
    font-weight: 600;
  }
}

@media (min-width: 1200px) {
  .reyva-sub {
    font-size: 1.1rem;
  }
}

/* Enhanced Mobile-First Hamburger Menu */
.nav-menu {
  position: relative;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

/* Hide hamburger menu on large screens */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.hamburger-lines {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.line {
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-smooth);
  transform-origin: center;
}

@media (min-width: 768px) {
  .line {
    width: 24px;
    height: 2.5px;
  }
}

.menu-text {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .menu-text {
    font-size: 0.75rem;
  }
}

/* Hamburger Animation States */
.menu-toggle.active .line-1 {
  transform: rotate(45deg) translate(3px, 3px);
}

.menu-toggle.active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .line-3 {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Enhanced Navigation Links - Mobile First */
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80vw;
  max-width: 300px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: right var(--duration-slow) var(--ease-smooth);
  z-index: 1001;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nav-links {
    width: 70vw;
    max-width: 350px;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-links.active {
  right: 0;
}

.nav-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  opacity: 0.05;
}

@media (min-width: 1024px) {
  .nav-backdrop {
    display: none;
  }
}

.nav-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-content {
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  border-bottom: 1px solid rgba(var(--color-border), 0.1);
}

@media (min-width: 1024px) {
  .nav-link {
    border-bottom: none;
    padding: 0.5rem 0;
    font-size: 0.875rem;
  }
}

.nav-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  min-width: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-number {
    display: none;
  }
}

.nav-label {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .nav-label {
    font-size: 0.875rem;
  }
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--duration-normal) var(--ease-smooth);
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
}

/* Enhanced Hero Section - Mobile First - REDUCED HEIGHT (60%) */
.hero-section {
  min-height: 42vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  background: linear-gradient(
    135deg, 
    rgba(32, 128, 125, 0.08) 0%, 
    rgba(212, 175, 55, 0.08) 50%,
    rgba(32, 128, 125, 0.05) 100%
  );
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 39vh;
    padding-top: 80px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-surface) 100%);
  z-index: -2;
}

.cosmic-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(32, 128, 125, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

/* Enhanced Brand Logos in Hero - Mobile First Responsive Design */
.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  width: 100%;
}

@media (min-width: 640px) {
  .brand-logos {
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
  }
}

@media (min-width: 768px) {
  .brand-logos {
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .brand-logos {
    gap: 3.5rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
  }
}

@media (min-width: 1200px) {
  .brand-logos {
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 4rem 0;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  min-width: 0;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-divider {
  display: none; /* Hidden on mobile by default */
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-accent);
  margin: 0.5rem 0;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  animation: dividerPulse 3s ease-in-out infinite;
  align-self: center;
  order: 1;
}

@media (min-width: 640px) {
  .logo-divider {
    display: block; /* Show on larger screens */
    font-size: 2.5rem;
    margin: 0 1rem;
    order: initial;
  }
}

@media (min-width: 768px) {
  .logo-divider {
    font-size: 3rem;
    margin: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .logo-divider {
    font-size: 4rem;
    margin: 0 2rem;
  }
}

@media (min-width: 1200px) {
  .logo-divider {
    font-size: 5rem;
    margin: 0 3rem;
  }
}

/* Hero Text - Mobile First */
.hero-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  animation: fadeInUp 1s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all var(--duration-normal) var(--ease-smooth);
  animation: fadeInUp 1s ease-out calc(0.6s + var(--stagger, 0)) both;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(32, 128, 125, 0.3);
  animation: fadeInUp 1s ease-out 0.8s both, color-pulse 3s ease-in-out infinite;
  transform: scale(1);
}

@media (min-width: 768px) {
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

.cta-button:hover {
  background: var(--color-accent);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Enhanced Gemstone Cards - Mobile First */
.gemstones-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .gemstones-section {
    padding: 4rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

.gemstones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gemstones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .gemstones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SPECTACULAR FLOATING COSMIC GEMSTONE EFFECTS */
.gemstones {
  position: relative;
  overflow: hidden;
}

/* Floating Cosmic Particles Background */
.gemstones::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 90% 30%, rgba(32, 128, 125, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 50% 60%, rgba(212, 175, 55, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 20% 80%, rgba(32, 128, 125, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(212, 175, 55, 0.08) 0%, transparent 30%);
  animation: cosmicDrift 30s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Magical Gemstone Particles */
.gemstones::after {
  content: '✦ ⟡ ✧ ⬟ ◊ ⟢ ✦ ◆';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 1rem;
  color: rgba(212, 175, 55, 0.3);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 4rem;
  padding: 3rem;
  animation: magicalFloat 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes cosmicDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
  25% { transform: translate(-5%, -8%) rotate(90deg); opacity: 1; }
  50% { transform: translate(3%, 5%) rotate(180deg); opacity: 0.8; }
  75% { transform: translate(-2%, -3%) rotate(270deg); opacity: 0.9; }
}

@keyframes magicalFloat {
  0% { transform: translateY(0px) scale(1); }
  25% { transform: translateY(-15px) scale(1.1); }
  50% { transform: translateY(-8px) scale(1.05); }
  75% { transform: translateY(-20px) scale(1.15); }
  100% { transform: translateY(0px) scale(1); }
}

/* Enhanced Gemstone Card with Ultra-Premium Effects */
.gemstone-card {
  position: relative;
  background: linear-gradient(
    145deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(248, 249, 250, 0.95) 50%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 10;
}

/* Magical Aura Effect on Hover */
.gemstone-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent,
    rgba(32, 128, 125, 0.4),
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  border-radius: 22px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.gemstone-card:hover::before {
  opacity: 1;
  animation: auralPulse 3s ease-in-out infinite;
}

.gemstone-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(32, 128, 125, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(212, 175, 55, 0.4);
}

@keyframes auralPulse {
  0%, 100% { 
    background: linear-gradient(
      60deg,
      transparent,
      rgba(212, 175, 55, 0.4),
      transparent,
      rgba(32, 128, 125, 0.4),
      transparent
    ); 
  }
  50% { 
    background: linear-gradient(
      240deg,
      transparent,
      rgba(32, 128, 125, 0.5),
      transparent,
      rgba(212, 175, 55, 0.5),
      transparent
    ); 
  }
}

.gem-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-cream) 100%);
}

@media (min-width: 768px) {
  .gem-image-container {
    height: 240px;
  }
}

.gem-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gem-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--duration-slow) var(--ease-smooth);
}

.primary-image {
  opacity: 1;
  transform: scale(1);
}

.secondary-image {
  opacity: 0;
  transform: scale(1.1);
}

.gemstone-card:hover .primary-image {
  opacity: 0;
  transform: scale(0.95);
}

.gemstone-card:hover .secondary-image {
  opacity: 1;
  transform: scale(1);
}

.gem-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gem-info {
  padding: 1.5rem;
  text-align: center;
}

.gem-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

/* Enhanced Gem Description Typography */
.gem-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: 50ch;
  text-align: left;
  font-weight: 400;
}

.gem-btn {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gem-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Enhanced Certification Section */
.certification-section {
  padding: 3rem 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .certification-section {
    padding: 4rem 0;
  }
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .certification-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.cert-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all var(--duration-normal) var(--ease-smooth);
  border: 1px solid var(--color-border);
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-badge-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.cert-badge {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
}

.cert-icon-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 1;
}

.cert-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 2s ease-in-out infinite;
}

.cert-sparkle:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.cert-sparkle:nth-child(2) {
  top: 70%;
  right: 15%;
  animation-delay: 0.5s;
}

.cert-sparkle:nth-child(3) {
  bottom: 20%;
  left: 50%;
  animation-delay: 1s;
}

.cert-name {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 500;
}

@media (min-width: 768px) {
  .cert-name {
    font-size: 0.875rem;
  }
}

/* Enhanced Process Section */
.process-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .process-section {
    padding: 4rem 0;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--duration-normal) var(--ease-smooth);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: 12px;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.process-step:hover .step-icon {
  transform: scale(1.1);
}

/* Process Icon Animations */
.chat-icon .chat-bubble {
  width: 24px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 12px 12px 12px 3px;
  position: relative;
}

.chat-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2px;
}

.chat-dots span {
  width: 3px;
  height: 3px;
  background: var(--color-white);
  border-radius: 50%;
  animation: chatDots 1.5s ease-in-out infinite;
}

.chat-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-dots span:nth-child(3) { animation-delay: 0.4s; }

.gem-icon .gem-shape {
  width: 16px;
  height: 20px;
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: relative;
}

.gem-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gem-sparkles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-accent-light);
  border-radius: 50%;
  animation: gemSparkle 2s ease-in-out infinite;
}

.gem-sparkles span:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.gem-sparkles span:nth-child(2) { top: 60%; right: 20%; animation-delay: 0.5s; }
.gem-sparkles span:nth-child(3) { bottom: 30%; left: 60%; animation-delay: 1s; }
.gem-sparkles span:nth-child(4) { top: 40%; left: 10%; animation-delay: 1.5s; }

/* More process icons */
.design-icon .pencil {
  width: 3px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 2px;
  position: relative;
  transform: rotate(-30deg);
}

.design-icon .pencil::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -2px;
  width: 7px;
  height: 6px;
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.design-lines {
  position: absolute;
  top: 60%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.design-lines span {
  display: block;
  width: 12px;
  height: 1px;
  background: var(--color-text-light);
  margin-bottom: 2px;
  animation: drawLine 2s ease-in-out infinite;
}

.design-lines span:nth-child(2) { width: 8px; animation-delay: 0.2s; }
.design-lines span:nth-child(3) { width: 10px; animation-delay: 0.4s; }

.cad-icon .computer-screen {
  width: 20px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 2px;
  position: relative;
}

.cad-icon .computer-screen::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.cad-model {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 1px;
  animation: cadRotate 3s ease-in-out infinite;
}

.calculation-symbols {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.calculation-symbols span {
  position: absolute;
  font-size: 8px;
  font-weight: bold;
  color: var(--color-accent);
  animation: symbolFloat 2s ease-in-out infinite;
}

.calculation-symbols span:nth-child(1) { top: 10%; right: 20%; animation-delay: 0s; }
.calculation-symbols span:nth-child(2) { bottom: 30%; left: 15%; animation-delay: 0.7s; }
.calculation-symbols span:nth-child(3) { top: 70%; right: 10%; animation-delay: 1.4s; }

.craft-icon .hammer {
  width: 16px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  position: relative;
  transform-origin: left center;
  animation: hammerStrike 2s ease-in-out infinite;
}

.craft-icon .hammer::before {
  content: '';
  position: absolute;
  right: -4px;
  top: -2px;
  width: 4px;
  height: 8px;
  background: var(--color-text);
  border-radius: 1px;
}

.craft-icon .anvil {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 6px;
  background: var(--color-text);
  border-radius: 1px;
}

.sparks {
  position: absolute;
  top: 40%;
  left: 60%;
}

.sparks span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: sparkFly 2s ease-out infinite;
}

.sparks span:nth-child(1) { animation-delay: 0.3s; }
.sparks span:nth-child(2) { animation-delay: 0.6s; }
.sparks span:nth-child(3) { animation-delay: 0.9s; }

.delivery-icon .delivery-truck {
  width: 20px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 2px;
  position: relative;
  animation: truckMove 3s ease-in-out infinite;
}

.delivery-icon .delivery-truck::before {
  content: '';
  position: absolute;
  right: -6px;
  top: 2px;
  width: 6px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 1px 2px 2px 1px;
}

.delivery-icon .delivery-truck::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 3px;
  width: 4px;
  height: 4px;
  background: var(--color-text);
  border-radius: 50%;
  box-shadow: 10px 0 0 var(--color-text);
}

.delivery-path {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

.delivery-path span {
  position: absolute;
  width: 4px;
  height: 1px;
  background: var(--color-accent);
  animation: pathMove 3s linear infinite;
}

.delivery-path span:nth-child(1) { left: 0%; animation-delay: 0s; }
.delivery-path span:nth-child(2) { left: 30%; animation-delay: 1s; }
.delivery-path span:nth-child(3) { left: 60%; animation-delay: 2s; }

/* Modal Enhancements */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  visibility: visible;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.modal.hidden {
  opacity: 0;
  visibility: hidden;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2001;
  animation: modalSlideIn 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text);
  transition: all var(--duration-normal) var(--ease-smooth);
  z-index: 2002;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
}

.gem-detail-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .gem-detail-header {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
}

.gem-detail-image {
  text-align: center;
}

.detail-gem-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .detail-gem-image {
    width: 160px;
    height: 160px;
  }
}

.gem-detail-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.gem-detail-planet {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gem-benefits ul {
  list-style: none;
  padding: 0;
}

.gem-benefits li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: 1.5rem;
}

.gem-benefits li:last-child {
  border-bottom: none;
}

.gem-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.gem-video-section,
.gem-quality-section {
  margin: 2rem 0;
}

.gem-video-section h3,
.gem-quality-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

/* Enhanced YouTube Video Container - Mobile-First Responsive */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(32, 128, 125, 0.08) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(32, 128, 125, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(var(--color-primary), 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
  max-width: 100%;
}

.video-container:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.15),
    0 6px 20px rgba(32, 128, 125, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(var(--color-primary), 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Mobile-First Responsive Sizing */
@media (min-width: 480px) {
  .video-container {
    max-width: 100%;
    border-radius: 18px;
  }
}

@media (min-width: 768px) {
  .video-container {
    max-width: 100%;
    border-radius: 20px;
  }
}

@media (min-width: 1024px) {
  .video-container {
    max-width: 100%;
  }
}

/* Ensure video section is mobile-friendly */
.gem-video-section {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(var(--color-primary), 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gem-video-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  text-align: center;
  text-shadow: 0 1px 5px rgba(32, 128, 125, 0.2);
}

@media (min-width: 768px) {
  .gem-video-section {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .gem-video-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gem-video-section {
    margin: 2.5rem 0;
    padding: 2rem;
  }
  
  .gem-video-section h3 {
    font-size: 1.75rem;
  }
}

.quality-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .quality-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: 8px;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.quality-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quality-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.quality-text strong {
  color: var(--color-text);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.quality-text p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0;
}

.gem-inquiry-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

/* Policies Section */
.policies-section {
  padding: 3rem 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .policies-section {
    padding: 4rem 0;
  }
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .policies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.policy-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--duration-normal) var(--ease-smooth);
  border: 1px solid var(--color-border);
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Policy Card Typography */
.policy-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.25rem;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.policy-list strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Enhanced Footer with SPECTACULAR COSMIC EFFECTS */
.footer {
  position: relative;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 25%,
    #1a1a1a 50%,
    #333333 75%,
    #1a1a1a 100%
  );
  color: var(--color-white);
  padding: 3rem 0 1.5rem;
  overflow: hidden;
  border-top: 3px solid rgba(212, 175, 55, 0.3);
}

/* Cosmic Stars Background */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(32, 128, 125, 0.6), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 200px 120px, rgba(32, 128, 125, 0.5), transparent);
  background-repeat: repeat;
  background-size: 250px 250px;
  animation: starsTwinkle 15s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* Floating Gemstone Symbols */
.footer::after {
  content: '⟡ ◊ ✦ ⬟ ◆ ⟢ ✧';
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  bottom: 1rem;
  font-size: 1.2rem;
  color: rgba(212, 175, 55, 0.2);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: space-around;
  gap: 3rem;
  padding: 2rem;
  animation: gemstoneDance 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes starsTwinkle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-250px); }
}

@keyframes gemstoneDance {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  25% { transform: translateY(-10px) rotate(90deg); opacity: 1; }
  50% { transform: translateY(5px) rotate(180deg); opacity: 0.8; }
  75% { transform: translateY(-15px) rotate(270deg); opacity: 0.9; }
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
  
  .footer::after {
    font-size: 1.5rem;
    gap: 4rem;
  }
}

.footer-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem;
  }
}

.footer-brand .brand-collaboration {
  margin-bottom: 1rem;
}

.footer-brand .primary-brand,
.footer-brand .partner-brand {
  color: var(--color-white);
}

.footer-brand .collaboration-symbol {
  color: var(--color-accent);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact h4,
.footer-certifications h4 {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact-item:hover {
  color: var(--color-accent);
  transform: translateX(2px);
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-badge.small {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Footer Bottom - Enhanced */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.legal-links a:hover {
  color: #fff;
  border-bottom-color: #ffd700;
}

.footer-certifications-extended {
  margin-top: 15px;
}

.footer-certifications-extended p {
  margin-bottom: 10px;
  color: #ffd700;
  font-size: 0.9em;
}

.cert-logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cert-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
    gap: 15px;
  }
  
  .cert-logos {
    gap: 10px;
  }
  
  .cert-badge {
    font-size: 0.75em;
    padding: 5px 10px;
  }
}

/* Additional process icon animations */
@keyframes drawLine {
  0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes cadRotate {
  0%, 100% { transform: translate(-50%, -50%) rotateY(0deg); }
  50% { transform: translate(-50%, -50%) rotateY(180deg); }
}

@keyframes symbolFloat {
  0%, 100% { opacity: 0.7; transform: translateY(0px); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@keyframes hammerStrike {
  0%, 70%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20% { transform: rotate(10deg); }
}

@keyframes sparkFly {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(6px, -6px) scale(0); }
}

@keyframes truckMove {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(3px); }
}

@keyframes pathMove {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* More process icons would go here... */

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.step-content p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* About Section Enhancement */
.about-section {
  padding: 3rem 0;
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.about-feature:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-display);
  min-width: 60px;
}

.feature-description h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.feature-description p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (min-width: 768px) {
  .about-logo-image {
    max-width: 300px;
  }
}

.about-logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInSlideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes sunPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes rayRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes auraGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes saturnPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes saturnRingRotate {
  from { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes chatDots {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes gemSparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Button Enhancements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 2px 10px rgba(32, 128, 125, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(32, 128, 125, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Loading states */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-border: #000000;
    --color-text-light: #000000;
  }
}

/* Performance Optimization & Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hardware acceleration for smooth animations */
.planet,
.central-sun,
.gem-card,
.btn,
.whatsapp-inquiry-btn {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
}

/* Optimize layout shifts and contain repaints */
.gem-card,
.policy-card {
  contain: layout style paint;
}

/* Critical CSS loading optimization */
.above-fold {
  contain: layout;
}

/* Optimize font loading */
@font-face {
  font-family: 'Inter';
  font-display: swap;
  src: local('Inter'), local('Inter-Regular');
}

/* Enhanced WhatsApp Inquiry Button */
.whatsapp-inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
}

/* Accessibility & Keyboard Navigation */
*:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
  border-radius: 3px;
}

button:focus,
a:focus,
[role="button"]:focus,
[tabindex]:focus {
  outline: 3px solid #ffd700;
  outline-offset: 3px;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.3);
}

/* Enhanced focus for solar system planets */
.planet:focus,
.central-sun:focus,
.earth-moon:focus {
  outline: 3px solid #fff !important;
  outline-offset: 2px;
  box-shadow: 
    0 0 0 1px #ffd700,
    0 0 20px rgba(255, 215, 0, 0.6) !important;
  z-index: 100;
  position: relative;
}

/* Keyboard navigation for gemstone cards */
.gem-card:focus {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 0 3px #ffd700,
    0 0 30px rgba(255, 215, 0, 0.4);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '→';
  margin: 0 0.75rem;
  color: rgba(255, 215, 0, 0.6);
  font-weight: bold;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ffd700;
}

.breadcrumb-item.active span {
  color: #ffd700;
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 0.5rem 0;
  }
  
  .breadcrumb {
    font-size: 0.8rem;
  }
  
  .breadcrumb-item:not(:last-child)::after {
    margin: 0 0.5rem;
  }
}

.whatsapp-inquiry-btn {
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: whatsapp-color-shift 4s ease-in-out infinite;
  transform: scale(1);
  width: 100%;
}

@media (min-width: 768px) {
  .whatsapp-inquiry-btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
  }
}

.whatsapp-inquiry-btn:hover {
  background: #128C7E;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
}

.whatsapp-inquiry-btn .btn-icon {
  font-size: 1.25rem;
  animation: icon-pulse 2s ease-in-out infinite;
}

.whatsapp-inquiry-btn .btn-text {
  font-weight: 600;
}

.whatsapp-inquiry-btn .btn-shimmer {
  /* Placeholder for shimmer effect - keeping simple */
  display: none;
}

/* Simple Color-Changing Animations */
@keyframes color-pulse {
  0%, 100% {
    background: var(--color-primary);
    box-shadow: 0 4px 15px rgba(32, 128, 125, 0.3);
  }
  25% {
    background: #1d5d5b;
    box-shadow: 0 4px 15px rgba(29, 93, 91, 0.4);
  }
  50% {
    background: var(--color-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  }
  75% {
    background: #b8941f;
    box-shadow: 0 4px 15px rgba(184, 148, 31, 0.4);
  }
}

@keyframes whatsapp-color-shift {
  0%, 100% {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }
  33% {
    background: #128C7E;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
  }
  66% {
    background: #075E54;
    box-shadow: 0 4px 15px rgba(7, 94, 84, 0.4);
  }
}

@keyframes icon-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}