:root {
  --color-bg-primary: #080B12;
  --color-bg-secondary: #1F2937;
  --color-text-primary: #E2E4E9;
  --color-accent-blue: #1E40AF;
  --color-accent-amber: #F59E0B;
  --color-card: #1F2937;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.875rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.2rem);
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent-amber);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  background: rgba(8, 11, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: transform var(--transition-base);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-amber);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, #0a0f1a 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-luxury-home .hero-canvas {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  color: rgba(226, 228, 233, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: var(--color-accent-blue);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.btn:hover {
  background: var(--color-accent-amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-accent-blue);
}

.btn-secondary:hover {
  border-color: var(--color-accent-amber);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.asymmetric-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  max-width: 85%;
}

.asymmetric-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  max-width: 85%;
}

.asymmetric-item:hover {
  transform: rotate(1deg) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.product-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  opacity: 0;
  transform: scale(0.9);
}

.product-card.visible {
  opacity: 1;
  transform: scale(1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-amber);
  margin-top: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-card);
  border: 1px solid rgba(226, 228, 233, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer {
  padding: var(--space-xl) 0;
  text-align: center;
  border-top: 1px solid rgba(226, 228, 233, 0.1);
  margin-top: var(--space-3xl);
  font-size: 0.75rem;
  color: rgba(226, 228, 233, 0.6);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 11, 18, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  margin: var(--space-md);
  box-shadow: var(--shadow-xl);
}

.modal-close {
  float: right;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
  line-height: 1;
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-md);
}

.contact-hero {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, #0a0f1a 100%);
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info {
  padding: var(--space-xl);
}

.contact-form-wrapper {
  background: var(--color-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(8, 11, 18, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: var(--space-xl);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .burger {
    display: flex;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .asymmetric-item {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .card {
    padding: var(--space-md);
  }

  .btn {
    padding: var(--space-xs) var(--space-lg);
    font-size: 0.75rem;
    width: 100%;
  }

  .product-image {
    height: 200px;
  }

  .modal-content {
    padding: var(--space-lg);
    margin: var(--space-sm);
    max-width: calc(100% - 1rem);
  }

  .contact-hero::before {
    width: 300px;
    height: 300px;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .header-content {
    padding: 0 var(--space-sm);
  }

  .logo {
    font-size: 1rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    margin-bottom: var(--space-md);
  }

  .hero-subtitle {
    font-size: clamp(0.875rem, 4vw, 1rem);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: var(--space-lg);
  }

  .card {
    padding: var(--space-sm);
  }

  .product-info {
    padding: var(--space-sm);
  }

  .product-title {
    font-size: 1rem;
  }

  .product-price {
    font-size: 1.25rem;
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.7rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 var(--space-xs);
  }

  .header {
    padding: var(--space-sm) 0;
  }

  .header-content {
    padding: 0 var(--space-xs);
  }

  .logo {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

  .burger {
    padding: 2px;
  }

  .burger span {
    width: 20px;
    height: 1.5px;
  }

  .hero {
    min-height: 60vh;
    padding: var(--space-md) 0;
  }

  .hero-content {
    padding: var(--space-sm);
  }

  .hero-title {
    font-size: clamp(1.25rem, 10vw, 2rem);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: clamp(0.75rem, 4vw, 0.875rem);
    line-height: 1.4;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: clamp(1.125rem, 8vw, 1.5rem);
    margin-bottom: var(--space-md);
    padding: 0 var(--space-xs);
  }

  .card {
    padding: var(--space-xs);
    border-radius: var(--radius-md);
  }

  .grid {
    gap: var(--space-sm);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .btn {
    padding: 0.5rem var(--space-sm);
    font-size: 0.65rem;
    letter-spacing: 0.03em;
    width: 100%;
    display: block;
  }

  .product-card {
    border-radius: var(--radius-md);
  }

  .product-image {
    height: 180px;
  }

  .product-info {
    padding: var(--space-xs);
  }

  .product-title {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
  }

  .product-price {
    font-size: 1.125rem;
    margin-top: var(--space-xs);
  }

  .asymmetric-item {
    padding: var(--space-sm);
    max-width: 100%;
    margin: 0;
  }

  .form-input,
  .form-textarea {
    padding: var(--space-xs);
    font-size: 0.75rem;
  }

  .form-textarea {
    min-height: 100px;
  }

  .checkbox-group {
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }

  .checkbox-group label {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .footer {
    padding: var(--space-md) 0;
    font-size: 0.65rem;
  }

  .footer p {
    margin: var(--space-xs) 0;
  }

  .modal-content {
    padding: var(--space-md);
    margin: var(--space-xs);
    max-width: calc(100% - 0.5rem);
    border-radius: var(--radius-md);
  }

  .error-code {
    font-size: clamp(3rem, 20vw, 5rem);
    margin-bottom: var(--space-sm);
  }

  .contact-hero {
    padding: var(--space-xl) 0;
  }

  .contact-hero::before {
    width: 200px;
    height: 200px;
  }

  .contact-content {
    gap: var(--space-md);
  }

  .contact-info {
    padding: var(--space-sm);
  }

  .contact-form-wrapper {
    padding: var(--space-md);
  }

  .map-container {
    margin-top: var(--space-md);
  }

  .map-container iframe {
    height: 250px;
  }

  h1 {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
  }

  h2 {
    font-size: clamp(1.125rem, 7vw, 1.5rem);
  }

  h3 {
    font-size: clamp(1rem, 6vw, 1.25rem);
  }

  p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .nav-links {
    padding: var(--space-md);
    top: 60px;
  }

  .nav-links a {
    font-size: 0.75rem;
    padding: var(--space-xs) 0;
  }

  .hero-modern {
    min-height: 70vh;
  }

  .hero-title-modern {
    font-size: clamp(1.5rem, 12vw, 2.5rem);
    margin-bottom: var(--space-md);
  }

  .hero-subtitle-modern {
    font-size: clamp(0.75rem, 4vw, 0.875rem);
  }

  .glass-card {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .feature-grid {
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .feature-item {
    padding: var(--space-sm);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }

  .split-section {
    gap: var(--space-lg);
    min-height: auto;
  }

  .split-content,
  .split-image {
    padding: var(--space-sm);
  }

  .category-showcase {
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }

  .category-card {
    aspect-ratio: 3/2;
  }

  .category-overlay {
    padding: var(--space-sm);
  }

  .category-overlay h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }

  .category-overlay p {
    font-size: 0.7rem;
    margin-bottom: var(--space-xs);
  }

  .category-overlay .btn {
    padding: 0.4rem var(--space-sm);
    font-size: 0.65rem;
  }

  .testimonial-grid {
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }

  .testimonial-card {
    padding: var(--space-sm);
  }

  .testimonial-card::before {
    font-size: 4rem;
    top: -10px;
    left: var(--space-sm);
  }

  .product-showcase {
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .product-card-modern {
    border-radius: var(--radius-md);
  }

  .product-image-wrapper {
    height: 250px;
  }

  .product-badge {
    top: var(--space-xs);
    right: var(--space-xs);
    padding: 0.25rem var(--space-sm);
    font-size: 0.65rem;
  }

  .product-info-modern {
    padding: var(--space-sm);
  }

  .product-title-modern {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }

  .product-price-modern {
    font-size: 1.5rem;
    margin-top: var(--space-xs);
  }

  .info-section {
    gap: var(--space-md);
    margin: var(--space-xl) 0;
  }

  .info-card {
    padding: var(--space-sm);
  }

  .masonry-layout {
    gap: var(--space-sm);
  }

  .masonry-item {
    padding: var(--space-sm);
  }

  .zigzag-layout {
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }

  .zigzag-item {
    gap: var(--space-md);
  }

  .zigzag-content {
    padding: var(--space-md);
  }

  .zigzag-image {
    aspect-ratio: 4/3;
  }

  .feature-grid-new {
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }

  .feature-box {
    padding: var(--space-sm);
  }

  .feature-icon-new {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  .timeline-item {
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-content {
    padding: var(--space-sm);
  }

  .contact-grid {
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .info-block {
    padding: var(--space-sm);
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  .form-modern {
    padding: var(--space-md);
  }

  .form-group-modern {
    margin-bottom: var(--space-md);
  }

  .form-label-modern {
    font-size: 0.7rem;
    margin-bottom: var(--space-xs);
  }

  .form-input-modern,
  .form-textarea-modern {
    padding: var(--space-xs);
    font-size: 0.75rem;
  }

  .form-textarea-modern {
    min-height: 100px;
  }

  .checkbox-modern {
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }

  .checkbox-modern label {
    font-size: 0.7rem;
  }

  .btn-submit {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.7rem;
  }

  .hours-card {
    padding: var(--space-sm);
    margin-top: var(--space-md);
  }

  .contact-features {
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .feature-contact {
    padding: var(--space-sm);
  }

  .feature-contact i {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
  }

  .map-wrapper iframe {
    height: 250px;
  }
}

/* ============================================
   New Luxury Hero Sections
   ============================================ */

/* Home Hero - Geometric Luxury */
.hero-luxury-home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #0a0f1a 30%, #080B12 100%);
}

.hero-geometric-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(30, 64, 175, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-orb-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.6) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.4) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -100px) scale(1.2); }
  66% { transform: translate(-80px, 80px) scale(0.8); }
}

.hero-luxury-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: var(--space-xl);
}

.hero-luxury-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #E2E4E9 0%, #E2E4E9 40%, #F59E0B 60%, #1E40AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: luxuryFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  position: relative;
  display: inline-block;
}

.hero-luxury-title::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.3) 50%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes luxuryFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-luxury-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(226, 228, 233, 0.8);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: luxuryFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
  margin-bottom: var(--space-2xl);
}

.hero-luxury-cta {
  opacity: 0;
  transform: translateY(30px);
  animation: luxuryFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
  margin-top: var(--space-2xl);
}

.hero-luxury-line {
  position: absolute;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, var(--color-accent-amber) 50%, transparent 100%);
  animation: lineGrow 2s ease-out 1.2s forwards;
}

.hero-luxury-line-1 {
  left: 10%;
  top: 0;
}

.hero-luxury-line-2 {
  right: 10%;
  top: 0;
}

.hero-luxury-line-3 {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@keyframes lineGrow {
  to { height: 100%; }
}

/* Products Hero - Layered Luxury */
.hero-luxury-products {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #1F2937 50%, #080B12 100%);
}

.hero-layered-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-layer-1 {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: layerRotate 30s linear infinite;
}

.hero-layer-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  animation: layerPulse 8s ease-in-out infinite;
}

.hero-layer-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(30, 64, 175, 0.05) 2px, rgba(30, 64, 175, 0.05) 4px);
  animation: layerShift 15s linear infinite;
}

@keyframes layerRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes layerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes layerShift {
  from { transform: translate(0, 0); }
  to { transform: translate(20px, 20px); }
}

.hero-products-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-products-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: perspective(1000px) rotateX(90deg);
  animation: titleFlip 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
  text-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

@keyframes titleFlip {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
  }
}

.hero-products-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: luxuryFadeIn 1s ease-out 0.6s forwards;
}

/* New Arrivals Hero - Dynamic Luxury */
.hero-luxury-new {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #0a0f1a 100%);
}

.hero-dynamic-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(30, 64, 175, 0.1) 60deg, transparent 120deg, rgba(245, 158, 11, 0.08) 180deg, transparent 240deg, rgba(30, 64, 175, 0.1) 300deg, transparent 360deg);
  animation: patternRotate 20s linear infinite;
}

@keyframes patternRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-new-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-new-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #E2E4E9 0%, #F59E0B 50%, #1E40AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
  animation: newTitleReveal 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  position: relative;
}

.hero-new-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent-amber), transparent);
  animation: underlineGrow 1s ease-out 1.2s forwards;
}

@keyframes newTitleReveal {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes underlineGrow {
  to { width: 80%; }
}

.hero-new-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 1s ease-out 0.6s forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Contact Hero - Elegant Luxury */
.hero-luxury-contact {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #1F2937 100%);
}

.hero-elegant-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 800px 400px at 20% 50%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 50%);
  animation: wavesMove 12s ease-in-out infinite;
}

@keyframes wavesMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-contact-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-contact-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px) blur(10px);
  animation: contactTitleFade 1.2s ease-out 0.3s forwards;
  position: relative;
}

.hero-contact-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.4), transparent);
  animation: titleSweep 2s ease-in-out 1s forwards;
}

@keyframes contactTitleFade {
  to {
    opacity: 1;
    transform: translateY(0) blur(0);
  }
}

@keyframes titleSweep {
  to { left: 100%; }
}

.hero-contact-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: luxuryFadeIn 1s ease-out 0.6s forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-luxury-title,
  .hero-products-title,
  .hero-new-title,
  .hero-contact-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  
  .hero-luxury-subtitle,
  .hero-products-subtitle,
  .hero-new-subtitle,
  .hero-contact-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }
  
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 320px) {
  .hero-luxury-title,
  .hero-products-title,
  .hero-new-title,
  .hero-contact-title {
    font-size: clamp(1.8rem, 12vw, 2.5rem);
  }
  
  .hero-luxury-subtitle,
  .hero-products-subtitle,
  .hero-new-subtitle,
  .hero-contact-subtitle {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }
}

/* ============================================
   Ultra Luxury Hero Sections - Holographic/Futuristic
   ============================================ */

/* Home Hero - Holographic Projection */
.hero-holographic-home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080B12;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
}

.hero-holo-scanlines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(30, 64, 175, 0.03) 2px,
    rgba(30, 64, 175, 0.03) 4px
  );
  animation: scanlinesMove 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes scanlinesMove {
  from { transform: translateY(0); }
  to { transform: translateY(4px); }
}

.hero-holo-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(30, 64, 175, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.15) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.2;
  animation: holoGridPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes holoGridPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.hero-holo-projection {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: 
    linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
    linear-gradient(225deg, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  animation: holoProjection 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes holoProjection {
  0%, 100% { 
    transform: perspective(1000px) rotateY(0deg) rotateX(5deg);
    opacity: 0.6;
  }
  50% { 
    transform: perspective(1000px) rotateY(10deg) rotateX(-5deg);
    opacity: 0.8;
  }
}

.hero-holo-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1100px;
  padding: var(--space-xl);
}

.hero-holo-title {
  font-size: clamp(3.5rem, 10vw, 4rem);
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, 
    #E2E4E9 0%, 
    #E2E4E9 25%, 
    rgba(30, 64, 175, 0.9) 50%, 
    rgba(245, 158, 11, 0.9) 75%, 
    #E2E4E9 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  animation: holoTitleShimmer 3s ease-in-out infinite, holoTitleReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  opacity: 0;
  transform: translateY(60px) scale(0.8);
  filter: drop-shadow(0 0 30px rgba(30, 64, 175, 0.5));
  position: relative;
}

.hero-holo-title::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    transparent 0%, 
    rgba(30, 64, 175, 0.4) 25%, 
    rgba(245, 158, 11, 0.4) 50%, 
    rgba(30, 64, 175, 0.4) 75%, 
    transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holoGlitch 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes holoTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes holoTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes holoGlitch {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-2px, 2px); }
  94% { transform: translate(2px, -2px); }
  96% { transform: translate(-2px, -2px); }
  98% { transform: translate(2px, 2px); }
}

.hero-holo-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: rgba(226, 228, 233, 0.9);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: holoFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
  margin-bottom: var(--space-2xl);
  text-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
}

@keyframes holoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-holo-cta {
  opacity: 0;
  transform: translateY(30px);
  animation: holoFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
  margin-top: var(--space-2xl);
}

/* Products Hero - Liquid Morphing */
.hero-liquid-products {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #0a0f1a 50%, #080B12 100%);
}

.hero-liquid-blob {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(60px);
  opacity: 0.5;
  animation: liquidMorph 20s ease-in-out infinite;
}

.hero-liquid-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.6) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hero-liquid-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.hero-liquid-blob-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.4) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes liquidMorph {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(0, 0) scale(1);
  }
  25% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
    transform: translate(30px, 50px) scale(1.05);
  }
}

.hero-liquid-outline {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, transparent 0%, rgba(30, 64, 175, 0.1) 50%, transparent 100%),
    radial-gradient(circle at 70% 60%, transparent 0%, rgba(245, 158, 11, 0.08) 50%, transparent 100%);
  animation: liquidOutline 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes liquidOutline {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-products-liquid-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-products-liquid-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: perspective(1000px) rotateX(90deg) scale(0.5);
  animation: liquidTitleReveal 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  text-shadow: 
    0 0 20px rgba(30, 64, 175, 0.5),
    0 0 40px rgba(245, 158, 11, 0.3),
    0 0 60px rgba(30, 64, 175, 0.2);
  position: relative;
}

.hero-products-liquid-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent-blue), 
    var(--color-accent-amber), 
    var(--color-accent-blue), 
    transparent);
  animation: liquidUnderline 1.5s ease-out 1.2s forwards;
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.6);
}

@keyframes liquidTitleReveal {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) scale(1);
  }
}

@keyframes liquidUnderline {
  to { width: 70%; }
}

.hero-products-liquid-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.8);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: holoFadeIn 1s ease-out 0.6s forwards;
}

/* New Arrivals Hero - Neon Network */
.hero-neon-new {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080B12;
}

.hero-neon-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(30, 64, 175, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.2) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  animation: neonGridPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes neonGridPulse {
  0%, 100% { 
    opacity: 0.3;
    filter: brightness(1);
  }
  50% { 
    opacity: 0.6;
    filter: brightness(1.5);
  }
}

.hero-neon-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-neon-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-accent-blue);
  border-radius: 50%;
  box-shadow: 
    0 0 10px var(--color-accent-blue),
    0 0 20px var(--color-accent-blue),
    0 0 30px var(--color-accent-blue);
  animation: neonNodePulse 2s ease-in-out infinite;
}

.hero-neon-node:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero-neon-node:nth-child(2) {
  top: 40%;
  right: 20%;
  animation-delay: 0.5s;
  background: var(--color-accent-amber);
  box-shadow: 
    0 0 10px var(--color-accent-amber),
    0 0 20px var(--color-accent-amber),
    0 0 30px var(--color-accent-amber);
}

.hero-neon-node:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 1s;
}

.hero-neon-node:nth-child(4) {
  top: 60%;
  right: 30%;
  animation-delay: 1.5s;
  background: var(--color-accent-amber);
  box-shadow: 
    0 0 10px var(--color-accent-amber),
    0 0 20px var(--color-accent-amber),
    0 0 30px var(--color-accent-amber);
}

@keyframes neonNodePulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.5);
    opacity: 0.7;
  }
}

.hero-neon-connections {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-neon-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent-blue), 
    transparent);
  box-shadow: 0 0 5px var(--color-accent-blue);
  animation: neonLineFlow 3s linear infinite;
}

.hero-neon-line-1 {
  top: 20%;
  left: 15%;
  width: 200px;
  transform: rotate(25deg);
}

.hero-neon-line-2 {
  top: 40%;
  right: 20%;
  width: 250px;
  transform: rotate(-35deg);
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent-amber), 
    transparent);
  box-shadow: 0 0 5px var(--color-accent-amber);
}

@keyframes neonLineFlow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.hero-new-neon-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-new-neon-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, 
    #E2E4E9 0%, 
    var(--color-accent-blue) 30%, 
    var(--color-accent-amber) 60%, 
    #E2E4E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: scale(0.3) rotate(-15deg);
  animation: neonTitleReveal 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(30, 64, 175, 0.6));
}

.hero-new-neon-title::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    var(--color-accent-blue) 0%, 
    var(--color-accent-amber) 50%, 
    var(--color-accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonTitleGlow 2s ease-in-out infinite;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
}

@keyframes neonTitleReveal {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes neonTitleGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-new-neon-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.8);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInRight 1s ease-out 0.6s forwards;
  text-shadow: 0 0 15px rgba(30, 64, 175, 0.4);
}

/* Contact Hero - Floating Particles */
.hero-particles-contact {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #1F2937 100%);
}

.hero-particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent-blue);
  animation: particleFloat 15s linear infinite;
}

.hero-particle:nth-child(odd) {
  background: var(--color-accent-amber);
  box-shadow: 0 0 10px var(--color-accent-amber);
}

.hero-particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.hero-particle:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.hero-particle:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 15s;
}

.hero-particle:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
  animation-duration: 20s;
}

.hero-particle:nth-child(5) {
  left: 90%;
  animation-delay: 3s;
  animation-duration: 14s;
}

@keyframes particleFloat {
  0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateX(20px) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateX(-20px) scale(1);
  }
  100% {
    top: -10px;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
}

.hero-particles-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 600px 400px at 30% 50%, rgba(30, 64, 175, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 500px 300px at 70% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  animation: particlesGlow 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes particlesGlow {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.hero-contact-particles-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-contact-particles-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(40px) blur(15px);
  animation: particlesTitleFade 1.3s ease-out 0.3s forwards;
  position: relative;
  text-shadow: 
    0 0 20px rgba(30, 64, 175, 0.4),
    0 0 40px rgba(245, 158, 11, 0.2);
}

.hero-contact-particles-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent-blue), 
    var(--color-accent-amber), 
    transparent);
  transform: translateY(-50%);
  animation: particlesTitleSweep 2.5s ease-in-out 1.2s forwards;
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.6);
}

@keyframes particlesTitleFade {
  to {
    opacity: 1;
    transform: translateY(0) blur(0);
  }
}

@keyframes particlesTitleSweep {
  to { left: 100%; }
}

.hero-contact-particles-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.8);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: holoFadeIn 1s ease-out 0.6s forwards;
}

/* Responsive adjustments for new hero sections */
@media (max-width: 768px) {
  .hero-holo-title,
  .hero-products-liquid-title,
  .hero-new-neon-title,
  .hero-contact-particles-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  
  .hero-holo-subtitle,
  .hero-products-liquid-subtitle,
  .hero-new-neon-subtitle,
  .hero-contact-particles-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }
  
  .hero-liquid-blob-1,
  .hero-liquid-blob-2,
  .hero-liquid-blob-3 {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 320px) {
  .hero-holo-title,
  .hero-products-liquid-title,
  .hero-new-neon-title,
  .hero-contact-particles-title {
    font-size: clamp(1.8rem, 12vw, 2rem);
  }
  
  .hero-holo-subtitle,
  .hero-products-liquid-subtitle,
  .hero-new-neon-subtitle,
  .hero-contact-particles-subtitle {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }
}

/* ============================================
   Modern Design Components (from HTML style blocks)
   ============================================ */

/* Hero Modern Styles */
.hero-modern {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom, #0a0f1a 0%, #080B12 100%);
}

.gradient-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 15s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-accent-blue);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-accent-amber);
  bottom: 20%;
  right: 15%;
  animation-delay: 3s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--color-accent-blue);
  top: 60%;
  left: 70%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(50px, -50px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.hero-content-modern {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-title-modern {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, #E2E4E9 0%, #E2E4E9 50%, rgba(245, 158, 11, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.3s forwards;
  letter-spacing: -0.02em;
}

.hero-subtitle-modern {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.7);
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.6s forwards;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.glass-card {
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 64, 175, 0.3);
  box-shadow: 0 16px 48px rgba(30, 64, 175, 0.2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.feature-item {
  position: relative;
  padding: var(--space-xl);
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 2rem;
  color: var(--color-accent-amber);
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  min-height: 500px;
}

.split-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--transition-slow);
}

.split-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.split-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-slow);
  position: relative;
}

.split-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.split-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-radius: var(--radius-xl);
  z-index: -1;
  transform: translate(20px, 20px);
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--transition-slow);
}

.category-card.visible {
  opacity: 1;
  transform: scale(1);
}

.category-card:hover {
  transform: scale(1.05);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover img {
  transform: scale(1.15);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 11, 18, 0.95) 0%, transparent 100%);
  padding: var(--space-xl);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.category-card:hover .category-overlay {
  transform: translateY(0);
  opacity: 1;
}

.parallax-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(245, 158, 11, 0.05) 100%);
  transform: translateY(0);
  will-change: transform;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-base);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--space-lg);
  font-size: 6rem;
  font-family: var(--font-display);
  color: var(--color-accent-amber);
  opacity: 0.2;
  line-height: 1;
}

.stars {
  color: var(--color-accent-amber);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

/* Products Page Styles */
.hero-products {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #0a0f1a 50%, #080B12 100%);
}

.hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-content-products {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.product-card-modern {
  position: relative;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(50px) rotateX(10deg);
  perspective: 1000px;
}

.product-card-modern.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.product-card-modern:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(30, 64, 175, 0.4);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--color-card);
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card-modern:hover .product-image-wrapper::before {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card-modern:hover .product-image {
  transform: scale(1.15) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--color-accent-amber) 0%, var(--color-accent-blue) 100%);
  color: var(--color-bg-primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.product-info-modern {
  padding: var(--space-xl);
  position: relative;
}

.product-title-modern {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  position: relative;
  display: inline-block;
}

.product-title-modern::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-amber) 0%, var(--color-accent-blue) 100%);
  transition: width var(--transition-base);
}

.product-card-modern:hover .product-title-modern::after {
  width: 100%;
}

.product-price-modern {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent-amber) 0%, var(--color-accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: var(--space-md);
}

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-3xl) 0;
}

.info-card {
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateX(-30px);
}

.info-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left var(--transition-slow);
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  border-color: rgba(30, 64, 175, 0.3);
  transform: translateX(5px);
}

.masonry-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  grid-auto-rows: masonry;
}

.masonry-item {
  background: rgba(31, 41, 55, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  opacity: 0;
  transform: scale(0.9);
}

.masonry-item.visible {
  opacity: 1;
  transform: scale(1);
}

.masonry-item:nth-child(odd) {
  transform: translateY(20px);
}

.masonry-item:nth-child(odd).visible {
  transform: translateY(0);
}

.masonry-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* New Arrivals Styles */
.hero-new {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #0a0f1a 100%);
}

.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(30, 64, 175, 0.12) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.zigzag-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
  transition: all var(--transition-slow);
}

.zigzag-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.zigzag-item:nth-child(even) {
  transform: translateX(100px);
  direction: rtl;
}

.zigzag-item:nth-child(even).visible {
  transform: translateX(0);
}

.zigzag-item:nth-child(even) > * {
  direction: ltr;
}

.zigzag-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.zigzag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.zigzag-item:hover .zigzag-image img {
  transform: scale(1.1);
}

.zigzag-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.zigzag-item:hover .zigzag-image::after {
  opacity: 1;
}

.zigzag-content {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
}

.zigzag-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent-amber) 0%, var(--color-accent-blue) 100%);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.feature-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.feature-box {
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform var(--transition-slow);
}

.feature-box:hover::before {
  transform: scale(1);
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: rgba(30, 64, 175, 0.3);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

.feature-icon-new {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-accent-amber);
  position: relative;
  z-index: 1;
}

.timeline-section {
  position: relative;
  padding: var(--space-3xl) 0;
}

.timeline-item {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--transition-slow);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-amber) 0%, var(--color-accent-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.timeline-content {
  flex: 1;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

/* Contact Page Styles */
.contact-hero-modern {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #0a0f1a 100%);
}

.contact-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.contact-content-modern {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.info-block {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateX(-30px);
}

.info-block.visible {
  opacity: 1;
  transform: translateX(0);
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent-amber) 0%, var(--color-accent-blue) 100%);
  transform: scaleY(0);
  transition: transform var(--transition-base);
}

.info-block:hover::before {
  transform: scaleY(1);
}

.info-block:hover {
  border-color: rgba(30, 64, 175, 0.3);
  transform: translateX(10px);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-md);
}

.contact-form-glass {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: all var(--transition-slow);
}

.contact-form-glass.visible {
  opacity: 1;
  transform: translateX(0);
}

.contact-form-glass::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.form-group-modern {
  margin-bottom: var(--space-xl);
  position: relative;
}

.form-label-modern {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input-modern,
.form-textarea-modern {
  width: 100%;
  padding: var(--space-md);
  background: rgba(8, 11, 18, 0.5);
  border: 1px solid rgba(226, 228, 233, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.form-input-modern:focus,
.form-textarea-modern:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  background: rgba(8, 11, 18, 0.7);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}

.form-textarea-modern {
  min-height: 140px;
  resize: vertical;
}

.checkbox-modern {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.checkbox-modern input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.checkbox-modern label {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-amber) 100%);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
  width: 300px;
  height: 300px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.hours-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}

.map-wrapper {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(226, 228, 233, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.feature-contact {
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.feature-contact.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-contact:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 64, 175, 0.3);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

/* Utility Classes for Inline Styles */
.hero-content-z-10 {
  position: relative;
  z-index: 10;
}

.hero-content-z-2 {
  position: relative;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-text-primary);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.pt-md {
  padding-top: var(--space-md);
}

.pb-md {
  padding-bottom: var(--space-md);
}

.fs-small {
  font-size: 0.75rem;
}

.fs-xs {
  font-size: 0.65rem;
}

.text-muted {
  color: rgba(226, 228, 233, 0.7);
}

.text-muted-sm {
  color: rgba(226, 228, 233, 0.5);
}

.text-muted-xs {
  color: rgba(226, 228, 233, 0.4);
}

.border-top {
  border-top: 1px solid rgba(226, 228, 233, 0.1);
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.align-start {
  align-items: start;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.icon-large {
  font-size: 2.5rem;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-md);
}

.icon-large-blue {
  font-size: 2.5rem;
  color: var(--color-accent-blue);
  margin-bottom: var(--space-md);
}

.icon-xl {
  font-size: 3rem;
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.icon-xl-amber {
  font-size: 3rem;
  color: var(--color-accent-amber);
  flex-shrink: 0;
}

.icon-4x {
  font-size: 4rem;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-lg);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, transparent 100%);
}

.bg-gradient-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}

.border-left-blue {
  border-left: 4px solid var(--color-accent-blue);
}

.border-right-amber {
  border-right: 4px solid var(--color-accent-amber);
}

.border-left-amber {
  border-left: 4px solid var(--color-accent-amber);
}

.max-width-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.iframe-no-border {
  border: 0;
}

/* Responsive adjustments for modern components */
@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
  }
  
  .category-showcase {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .product-showcase {
    grid-template-columns: 1fr;
  }
  
  .info-section {
    grid-template-columns: 1fr;
  }
  
  .zigzag-item {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  
  .zigzag-item:nth-child(even) {
    direction: ltr !important;
  }
  
  .zigzag-item:nth-child(even) > * {
    direction: ltr;
  }
  
  .contact-content-modern {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Comprehensive 320px Responsive Styles
   ============================================ */

@media (max-width: 320px) {
  /* Base Typography */
  html {
    font-size: 10px;
  }

  body {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  /* Container and Spacing */
  .container {
    padding: 0 var(--space-xs);
  }

  /* Header */
  .header {
    padding: var(--space-xs) 0;
  }

  .header-content {
    padding: 0 var(--space-xs);
  }

  .logo {
    font-size: 0.85rem;
    letter-spacing: 0.01em;
  }

  .burger {
    padding: 1px;
  }

  .burger span {
    width: 18px;
    height: 1.5px;
  }

  .nav-links {
    top: 55px;
    padding: var(--space-sm);
  }

  .nav-links a {
    font-size: 0.7rem;
    padding: var(--space-xs) 0;
  }

  /* Holographic Home Hero */
  .hero-holographic-home {
    min-height: 70vh;
    padding: var(--space-md) 0;
  }

  .hero-holo-content {
    padding: var(--space-sm);
    max-width: 100%;
  }

  .hero-holo-title {
    font-size: clamp(1.5rem, 14vw, 2rem);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 15px rgba(30, 64, 175, 0.4));
  }

  .hero-holo-subtitle {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    line-height: 1.4;
  }

  .hero-holo-scanlines {
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1px,
      rgba(30, 64, 175, 0.02) 1px,
      rgba(30, 64, 175, 0.02) 2px
    );
  }

  .hero-holo-grid {
    background-size: 50px 50px;
    opacity: 0.15;
  }

  .hero-holo-projection {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
  }

  /* Liquid Products Hero */
  .hero-liquid-products {
    min-height: 60vh;
    padding: var(--space-md) 0;
  }

  .hero-products-liquid-content {
    padding: var(--space-sm);
    max-width: 100%;
  }

  .hero-products-liquid-title {
    font-size: clamp(1.5rem, 14vw, 2.2rem);
    margin-bottom: var(--space-sm);
    text-shadow: 
      0 0 15px rgba(30, 64, 175, 0.4),
      0 0 25px rgba(245, 158, 11, 0.2);
  }

  .hero-products-liquid-title::after {
    height: 2px;
    bottom: -10px;
  }

  .hero-products-liquid-subtitle {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    line-height: 1.4;
  }

  .hero-liquid-blob-1,
  .hero-liquid-blob-2,
  .hero-liquid-blob-3 {
    width: 250px;
    height: 250px;
  }

  /* Neon New Arrivals Hero */
  .hero-neon-new {
    min-height: 60vh;
    padding: var(--space-md) 0;
  }

  .hero-new-neon-content {
    padding: var(--space-sm);
    max-width: 100%;
  }

  .hero-new-neon-title {
    font-size: clamp(1.5rem, 14vw, 2.2rem);
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 20px rgba(30, 64, 175, 0.5));
  }

  .hero-new-neon-subtitle {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    line-height: 1.4;
  }

  .hero-neon-grid {
    background-size: 40px 40px;
    opacity: 0.2;
  }

  .hero-neon-node {
    width: 6px;
    height: 6px;
  }

  .hero-neon-line {
    height: 0.5px;
  }

  .hero-neon-line-1,
  .hero-neon-line-2 {
    width: 100px;
  }

  /* Particles Contact Hero */
  .hero-particles-contact {
    min-height: 50vh;
    padding: var(--space-md) 0;
  }

  .hero-contact-particles-content {
    padding: var(--space-sm);
    max-width: 100%;
  }

  .hero-contact-particles-title {
    font-size: clamp(1.5rem, 14vw, 2.2rem);
    margin-bottom: var(--space-sm);
    text-shadow: 
      0 0 15px rgba(30, 64, 175, 0.3),
      0 0 25px rgba(245, 158, 11, 0.15);
  }

  .hero-contact-particles-title::before {
    height: 1.5px;
  }

  .hero-contact-particles-subtitle {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    line-height: 1.4;
  }

  .hero-particle {
    width: 3px;
    height: 3px;
  }

  /* Sections */
  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: clamp(1rem, 9vw, 1.4rem);
    margin-bottom: var(--space-md);
    padding: 0 var(--space-xs);
    line-height: 1.2;
  }

  /* Cards */
  .card,
  .glass-card {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  /* Grids */
  .grid,
  .grid-2,
  .grid-3 {
    gap: var(--space-sm);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Feature Grid */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .feature-item {
    padding: var(--space-sm);
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  /* Split Section */
  .split-section {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    min-height: auto;
  }

  .split-content,
  .split-image {
    padding: var(--space-sm);
  }

  /* Category Showcase */
  .category-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }

  .category-card {
    aspect-ratio: 3/2;
  }

  .category-overlay {
    padding: var(--space-sm);
  }

  .category-overlay h3 {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
  }

  .category-overlay p {
    font-size: 0.65rem;
    margin-bottom: var(--space-xs);
  }

  /* Product Showcase */
  .product-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .product-card-modern {
    border-radius: var(--radius-md);
  }

  .product-image-wrapper {
    height: 200px;
  }

  .product-badge {
    top: var(--space-xs);
    right: var(--space-xs);
    padding: 0.2rem var(--space-xs);
    font-size: 0.6rem;
  }

  .product-info-modern {
    padding: var(--space-sm);
  }

  .product-title-modern {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
  }

  .product-price-modern {
    font-size: 1.25rem;
    margin-top: var(--space-xs);
  }

  /* Info Section */
  .info-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
  }

  .info-card {
    padding: var(--space-sm);
  }

  /* Zigzag Layout */
  .zigzag-layout {
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }

  .zigzag-item {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    direction: ltr !important;
  }

  .zigzag-item:nth-child(even) {
    direction: ltr !important;
  }

  .zigzag-content {
    padding: var(--space-md);
  }

  .zigzag-image {
    aspect-ratio: 4/3;
  }

  /* Feature Grid New */
  .feature-grid-new {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }

  .feature-box {
    padding: var(--space-sm);
  }

  .feature-icon-new {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  /* Timeline */
  .timeline-item {
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-direction: column;
  }

  .timeline-marker {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .timeline-content {
    padding: var(--space-sm);
    margin-left: 0;
  }

  /* Contact Content */
  .contact-content-modern {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }

  .info-block {
    padding: var(--space-sm);
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
  }

  .contact-form-glass {
    padding: var(--space-md);
  }

  .form-group-modern {
    margin-bottom: var(--space-md);
  }

  .form-label-modern {
    font-size: 0.65rem;
    margin-bottom: var(--space-xs);
  }

  .form-input-modern,
  .form-textarea-modern {
    padding: var(--space-xs);
    font-size: 0.7rem;
  }

  .form-textarea-modern {
    min-height: 100px;
  }

  .checkbox-modern {
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }

  .checkbox-modern label {
    font-size: 0.65rem;
  }

  .btn-submit {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.65rem;
  }

  .hours-card {
    padding: var(--space-sm);
    margin-top: var(--space-md);
  }

  .contact-features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .feature-contact {
    padding: var(--space-sm);
  }

  .feature-contact i {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
  }

  /* Map */
  .map-wrapper {
    margin-top: var(--space-xl);
  }

  .map-wrapper iframe {
    height: 250px;
  }

  /* Buttons */
  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.65rem;
    letter-spacing: 0.02em;
    width: 100%;
    display: block;
  }

  /* Typography */
  h1 {
    font-size: clamp(1.125rem, 9vw, 1.5rem);
  }

  h2 {
    font-size: clamp(1rem, 8vw, 1.25rem);
  }

  h3 {
    font-size: clamp(0.9rem, 7vw, 1.1rem);
  }

  p {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }

  .testimonial-card {
    padding: var(--space-sm);
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: -10px;
    left: var(--space-sm);
  }

  .stars {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
  }

  /* Parallax */
  .parallax-section {
    padding: var(--space-xl) 0;
  }

  /* Footer */
  .footer {
    padding: var(--space-md) 0;
    font-size: 0.6rem;
  }

  .footer p {
    margin: var(--space-xs) 0;
  }

  /* Modal */
  .modal-content {
    padding: var(--space-md);
    margin: var(--space-xs);
    max-width: calc(100% - 0.5rem);
    border-radius: var(--radius-md);
  }

  /* Error Page */
  .error-code {
    font-size: clamp(2.5rem, 25vw, 4rem);
    margin-bottom: var(--space-sm);
  }

  /* Utility Classes */
  .icon-large,
  .icon-large-blue {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }

  .icon-xl,
  .icon-xl-amber {
    font-size: 2rem;
  }

  .icon-4x {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
  }

  /* Masonry Layout */
  .masonry-layout {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .masonry-item {
    padding: var(--space-sm);
  }

  /* Product Grid 3D */
  .product-grid-3d {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-card-3d {
    padding: var(--space-sm);
  }

  /* Feature Box Radial */
  .feature-box-radial {
    padding: var(--space-sm);
  }

  /* Compliance Footer */
  .compliance-footer {
    padding: var(--space-lg) 0;
  }

  .compliance-footer p {
    font-size: 0.65rem;
    padding: 0 var(--space-xs);
  }

  .compliance-footer a {
    font-size: 0.65rem;
  }
}

/* ============================================
   Modern Policy Pages Design
   ============================================ */

/* Policy Hero Sections */
.policy-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #080B12 0%, #1F2937 50%, #080B12 100%);
}

.policy-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 800px 400px at 30% 50%, rgba(30, 64, 175, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 70% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  animation: policyBgMove 15s ease-in-out infinite;
}

@keyframes policyBgMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}

.policy-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.policy-hero-icon {
  font-size: 5rem;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  animation: policyIconReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.5));
}

@keyframes policyIconReveal {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.policy-hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(40px);
  animation: policyTitleFade 1.2s ease-out 0.4s forwards;
  text-shadow: 0 0 30px rgba(30, 64, 175, 0.3);
}

@keyframes policyTitleFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(226, 228, 233, 0.8);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: policyTitleFade 1s ease-out 0.6s forwards;
}

/* Policy Content Sections */
.policy-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: var(--space-3xl);
}

.policy-card-modern {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.policy-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent-amber) 0%, var(--color-accent-blue) 100%);
  transform: scaleY(0);
  transition: transform var(--transition-base);
}

.policy-card-modern.visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-card-modern.visible::before {
  transform: scaleY(1);
}

.policy-card-modern:hover {
  border-color: rgba(30, 64, 175, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
}

.policy-card-icon {
  font-size: 3rem;
  color: var(--color-accent-blue);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.policy-card-icon-amber {
  color: var(--color-accent-amber);
}

.policy-card-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  font-family: var(--font-display);
}

.policy-card-text {
  color: rgba(226, 228, 233, 0.8);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.policy-card-text:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.policy-list-item {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  color: rgba(226, 228, 233, 0.8);
  line-height: 1.8;
}

.policy-list-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent-amber);
  font-weight: bold;
}

.policy-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.policy-feature-card {
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.policy-feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 64, 175, 0.3);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
}

.policy-feature-icon {
  font-size: 2.5rem;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-md);
}

.policy-feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.policy-feature-text {
  color: rgba(226, 228, 233, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.policy-highlight-box {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 1px solid rgba(30, 64, 175, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.policy-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(30, 64, 175, 0.05) 100%);
  pointer-events: none;
}

.policy-highlight-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  font-family: var(--font-display);
}

.policy-date-box {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 228, 233, 0.1);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

.policy-date-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-date-text {
  color: rgba(226, 228, 233, 0.7);
  font-size: 0.9rem;
}

.policy-date-value {
  color: var(--color-accent-amber);
  font-weight: 600;
  font-size: 1rem;
}

.policy-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 228, 233, 0.2), transparent);
  margin: var(--space-2xl) 0;
}

/* Responsive for policy pages */
@media (max-width: 768px) {
  .policy-hero {
    min-height: 50vh;
  }

  .policy-hero-icon {
    font-size: 3.5rem;
  }

  .policy-card-modern {
    padding: var(--space-xl);
  }

  .policy-grid-modern {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 320px) {
  .policy-hero {
    min-height: 45vh;
    padding: var(--space-md) 0;
  }

  .policy-hero-content {
    padding: var(--space-sm);
  }

  .policy-hero-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
  }

  .policy-hero-title {
    font-size: clamp(1.5rem, 12vw, 2rem);
    margin-bottom: var(--space-md);
  }

  .policy-hero-subtitle {
    font-size: clamp(0.8rem, 3vw, 1rem);
  }

  .policy-card-modern {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .policy-card-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }

  .policy-card-title {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
    margin-bottom: var(--space-sm);
  }

  .policy-card-text {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .policy-list-item {
    padding-left: var(--space-lg);
    font-size: 0.75rem;
  }

  .policy-grid-modern {
    gap: var(--space-md);
    margin: var(--space-xl) 0;
  }

  .policy-feature-card {
    padding: var(--space-md);
  }

  .policy-feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }

  .policy-feature-title {
    font-size: 1rem;
  }

  .policy-feature-text {
    font-size: 0.75rem;
  }

  .policy-highlight-box {
    padding: var(--space-md);
  }

  .policy-highlight-title {
    font-size: 1.125rem;
  }

  .policy-date-box {
    padding: var(--space-md);
    margin-top: var(--space-xl);
  }

  .policy-date-text {
    font-size: 0.75rem;
  }

  .policy-date-value {
    font-size: 0.85rem;
  }
}

