:root {
  /* Colors */
  --color-primary: #14071F;
  --color-secondary: #1B0A2A;
  --color-tertiary: #250E36;
  --color-quaternary: #2E1344;
  --color-quinary: #371651;
  --color-text: #f5f5f5;
  --color-text-light: #d0d0d0;
  --color-accent: #9b59b6;
  --color-success: #2ecc71;
  --color-error: #e74c3c;
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-tertiary) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(155, 89, 182, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  background: rgba(20, 7, 31, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: var(--font-size-xl);
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu li a {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav-menu li a:hover {
  background: rgba(155, 89, 182, 0.2);
  color: var(--color-text);
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg);
}

.section {
  padding: var(--space-2xl) var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: var(--radius-full);
  opacity: 0.5;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: var(--radius-full);
}

/* 3D Slider */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: var(--space-2xl) auto;
  height: 500px;
  perspective: 1200px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform var(--transition-slow);
}

.slide {
  position: absolute;
  width: 80%;
  height: 100%;
  left: 10%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  opacity: 0.6;
  transform: translateZ(-200px) scale(0.8);
  transition: all var(--transition-slow);
}

.slide.active {
  opacity: 1;
  transform: translateZ(0) scale(1);
  z-index: 10;
}

.slide.prev {
  transform: translateX(-30%) translateZ(-150px) scale(0.85);
  opacity: 0.7;
}

.slide.next {
  transform: translateX(30%) translateZ(-150px) scale(0.85);
  opacity: 0.7;
}

.slide-image {
  width: 100%;
  height: 70%;
  object-fit: cover;
  background: var(--color-tertiary);
  position: relative;
  overflow: hidden;
}

.slide-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2) 0%, transparent 100%);
  z-index: 1;
}

.slide-image::after {
  content: '🌸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.3;
  z-index: 0;
}

.slide-content {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.slide-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.slide-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.slider-controls {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 20;
}

.slider-btn {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-text);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(155, 89, 182, 0.3);
  border: none;
  color: var(--color-text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: var(--font-size-lg);
  z-index: 20;
  transition: all var(--transition-base);
}

.slider-nav:hover {
  background: rgba(155, 89, 182, 0.6);
}

.slider-nav.prev {
  left: var(--space-md);
}

.slider-nav.next {
  right: var(--space-md);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(155, 89, 182, 0.1);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-quinary));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(155, 89, 182, 0.3);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--color-tertiary);
}

.product-info {
  padding: var(--space-lg);
}

.product-name {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.product-price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

/* Contact Form */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(155, 89, 182, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-tertiary);
  border: 1px solid rgba(155, 89, 182, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.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: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, #8e44ad 100%);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #8e44ad 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: var(--color-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(155, 89, 182, 0.1);
  border-left: 4px solid var(--color-accent);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 4rem;
  font-family: var(--font-primary);
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

/* Footer */
.footer {
  background: var(--color-primary);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-3xl);
  border-top: 1px solid rgba(155, 89, 182, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-menu li a {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

.footer-menu li a:hover {
  color: var(--color-text);
}

.footer-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

/* Privacy Popup */
.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  max-width: 400px;
  background: var(--color-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  border: 1px solid rgba(155, 89, 182, 0.3);
  display: none;
}

.privacy-popup.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.privacy-popup-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup-btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.privacy-popup-btn.accept {
  background: var(--color-accent);
  color: var(--color-text);
}

.privacy-popup-btn.decline {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
}

/* 404 Page */
.error-page {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: 8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.error-message {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
  color: var(--color-text);
}

/* Thank You Page */
.thank-you-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-success);
  margin-bottom: var(--space-lg);
}

.thank-you-title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.thank-you-message {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  /* Backdrop overlay for mobile menu */
  .nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
  }
  
  .nav-menu.active::before {
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    background: rgba(20, 7, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(155, 89, 182, 0.3);
    padding: var(--space-lg) var(--space-md);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  
  .nav-menu.active {
    display: flex;
    transform: translateY(0);
    animation: slideUpFromBottom 0.3s ease-out;
  }
  
  @keyframes slideUpFromBottom {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu li a {
    display: block;
    width: 100%;
    padding: var(--space-md);
    text-align: center;
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    margin: var(--space-xs) 0;
  }
  
  .slider-container {
    height: 400px;
  }
  
  .slide {
    width: 90%;
    left: 5%;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-popup {
    max-width: calc(100% - 2rem);
    right: var(--space-md);
    bottom: var(--space-md);
  }
  
  .error-code {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 13px;
  }
  
  .header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .logo {
    font-size: var(--font-size-lg);
  }
  
  .section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .slider-container {
    height: 350px;
  }
  
  .contact-section {
    padding: var(--space-lg);
  }
  
  .error-code {
    font-size: 4rem;
  }
}

@media (max-width: 320px) {
  :root {
    font-size: 11px;
  }
  
  html {
    font-size: 11px;
  }
  
  body {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  /* Header */
  .header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .header-container {
    gap: var(--space-xs);
  }
  
  .logo {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
  }
  
  .nav-toggle {
    font-size: 1.3rem;
    padding: var(--space-xs);
  }
  
  .nav-menu {
    padding: var(--space-md) var(--space-sm);
    max-height: 75vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  
  .nav-menu li a {
    font-size: 0.95rem;
    padding: var(--space-sm);
    margin: var(--space-xs) 0;
  }
  
  /* Container & Sections */
  .container {
    padding: var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) var(--space-xs);
    margin-bottom: var(--space-lg);
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
  }
  
  .section-title::after {
    width: 40px;
    height: 2px;
  }
  
  /* Typography */
  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  /* Slider */
  .slider-container {
    height: 280px;
    margin: var(--space-lg) auto;
  }
  
  .slide {
    width: 95%;
    left: 2.5%;
  }
  
  .slide-content {
    padding: var(--space-sm);
  }
  
  .slide-title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .slide-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .slider-nav {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .slider-nav.prev {
    left: var(--space-xs);
  }
  
  .slider-nav.next {
    right: var(--space-xs);
  }
  
  .slider-controls {
    bottom: var(--space-sm);
    gap: var(--space-xs);
  }
  
  .slider-btn {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
  
  /* Product Grid */
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .product-card {
    padding: var(--space-sm);
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-name {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .product-price {
    font-size: 1.1rem;
  }
  
  /* Contact Form */
  .contact-section {
    padding: var(--space-md);
    margin: var(--space-md) 0;
  }
  
  .form-group {
    margin-bottom: var(--space-md);
  }
  
  .form-label {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
  }
  
  .form-input,
  .form-textarea {
    padding: var(--space-xs) var(--space-sm);
    font-size: 1rem;
  }
  
  .form-textarea {
    min-height: 100px;
  }
  
  .checkbox-group {
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }
  
  .checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .btn {
    padding: var(--space-xs) var(--space-lg);
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
  
  .btn-block {
    width: 100%;
  }
  
  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .testimonial-card {
    padding: var(--space-sm);
  }
  
  .testimonial-card::before {
    font-size: 2.5rem;
    top: var(--space-xs);
    right: var(--space-xs);
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
  }
  
  .testimonial-author {
    font-size: 0.85rem;
  }
  
  /* Footer */
  .footer {
    padding: var(--space-md) var(--space-sm);
    margin-top: var(--space-xl);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .footer-menu {
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
    justify-content: center;
  }
  
  .footer-menu li a {
    font-size: 0.8rem;
  }
  
  .footer-text {
    font-size: 0.8rem;
  }
  
  /* Privacy Popup */
  .privacy-popup {
    max-width: calc(100% - 1rem);
    right: var(--space-xs);
    bottom: var(--space-xs);
    left: var(--space-xs);
    padding: var(--space-sm);
  }
  
  .privacy-popup-text {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
  }
  
  .privacy-popup-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .privacy-popup-btn {
    width: 100%;
    padding: var(--space-xs);
    font-size: 0.85rem;
  }
  
  /* Error Page */
  .error-page {
    padding: var(--space-xl) var(--space-sm);
    min-height: 70vh;
  }
  
  .error-code {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
  }
  
  .error-message {
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
  }
  
  /* Thank You Page */
  .thank-you-section {
    padding: var(--space-xl) var(--space-sm);
    min-height: 70vh;
  }
  
  .thank-you-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
  }
  
  .thank-you-title {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
  }
  
  .thank-you-message {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
  }
  
  /* Map */
  .map-container {
    height: 300px;
    margin-top: var(--space-md);
  }
  
  /* Modern Hero Sections */
  .hero-modern,
  .policy-hero,
  .error-hero,
  .thank-you-hero {
    min-height: 50vh;
    padding: var(--space-xl) var(--space-sm);
  }
  
  .policy-icon-container,
  .success-icon-container {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
  }
  
  .policy-icon-container i,
  .success-icon i {
    font-size: 2rem;
  }
  
  .success-icon {
    width: 100px;
    height: 100px;
  }
  
  .success-icon i {
    font-size: 3rem;
  }
  
  /* Glass Cards */
  .glass-card,
  .glass-policy,
  .glass-404,
  .glass-thanks {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .policy-section-title {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
  }
  
  .policy-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  /* Timeline */
  .timeline-item {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
  }
  
  .timeline-item::before {
    width: 2px;
  }
  
  .timeline-item::after {
    width: 14px;
    height: 14px;
    left: -6px;
  }
  
  /* Stats */
  .stat-card {
    padding: var(--space-md);
    min-width: auto;
  }
  
  .stat-card i {
    font-size: 1.5rem;
  }
  
  .stat-card h4 {
    font-size: 1rem;
  }
  
  .stat-card p {
    font-size: 0.8rem;
  }
  
  /* Cookie Types */
  .cookie-type,
  .highlight-box,
  .privacy-list {
    padding: var(--space-sm);
    margin: var(--space-xs) 0;
  }
  
  .cookie-type strong {
    font-size: 0.95rem;
  }
  
  .cookie-type p {
    font-size: 0.85rem;
  }
  
  /* Button Groups */
  .btn-group-modern,
  .modern-btn-group {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .btn-group-modern .btn,
  .modern-btn-group .btn,
  .modern-btn-group .btn-modern-outline {
    width: 100%;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-lg);
  }
  
  /* Error Number */
  .error-number {
    font-size: 3rem;
  }
  
  .error-hero::before {
    font-size: 12rem;
  }
  
  /* 404 Page Specific */
  .error-hero {
    min-height: 60vh;
    padding: var(--space-lg) var(--space-xs);
  }
  
  .glass-404 {
    padding: var(--space-md);
    max-width: calc(100% - 1rem);
    margin: 0 auto;
  }
  
  .glass-404 h1 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }
  
  .error-hero::after {
    width: 250px;
    height: 250px;
  }
  
  .floating-elements {
    display: none;
  }
  
  .error-number::after {
    filter: blur(20px);
  }
  
  .glass-404 > div {
    padding: var(--space-sm);
  }
  
  .glass-404 > div p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }
  
  /* Thank You Page Specific */
  .thank-you-hero {
    min-height: 60vh;
    padding: var(--space-lg) var(--space-xs);
  }
  
  .thank-you-hero::before,
  .thank-you-hero::after {
    display: none;
  }
  
  .glass-thanks {
    padding: var(--space-md);
    max-width: calc(100% - 1rem);
    margin: 0 auto;
  }
  
  .glass-thanks h1 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }
  
  .success-icon-container {
    margin-bottom: var(--space-md);
  }
  
  .success-icon {
    width: 90px;
    height: 90px;
  }
  
  .success-icon i {
    font-size: 2.5rem;
  }
  
  .success-icon::before {
    animation: none;
  }
  
  .confetti {
    display: none;
  }
  
  .message-card {
    padding: var(--space-sm);
    margin: var(--space-md) 0;
  }
  
  .message-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
  }
  
  .btn-group-modern {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    margin-top: var(--space-lg);
  }
  
  .btn-group-modern .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-lg);
  }
  
  .modern-btn-group {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    margin-top: var(--space-lg);
  }
  
  .modern-btn-group .btn,
  .modern-btn-group .btn-modern-outline {
    width: 100%;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-lg);
  }
  
  .gradient-text-thanks {
    font-size: inherit;
  }
  
  /* Floating Elements */
  .floating-elements span {
    width: 12px;
    height: 12px;
  }
  
  .floating-elements span:nth-child(1),
  .floating-elements span:nth-child(3) {
    width: 10px;
    height: 10px;
  }
  
  .floating-elements span:nth-child(2) {
    width: 15px;
    height: 15px;
  }
  
  .floating-elements span:nth-child(4) {
    width: 12px;
    height: 12px;
  }
  
  /* Confetti */
  .confetti-piece {
    width: 6px;
    height: 6px;
  }
  
  /* Message Card */
  .message-card {
    padding: var(--space-md);
    margin: var(--space-md) 0;
  }
  
  /* Contact Info Cards */
  .product-card[style*="text-align: center"] {
    padding: var(--space-sm);
  }
  
  .product-card[style*="text-align: center"] > div:first-child {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-sm);
  }
  
  .product-card[style*="text-align: center"] > div:first-child i {
    font-size: 1.5rem;
  }
  
  /* Modern Grid */
  .modern-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  /* Gradient Text */
  .gradient-text,
  .gradient-text-policy,
  .gradient-text-thanks {
    font-size: inherit;
  }
  
  /* Section Dividers */
  .section::before {
    width: 60px;
    height: 3px;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  * {
    max-width: 100%;
  }
  
  img,
  iframe,
  video {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve touch targets */
  button,
  .btn,
  a.btn,
  .nav-toggle,
  .slider-btn,
  .privacy-popup-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Better spacing for small screens */
  .section-title {
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Reduce animation complexity on small screens */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}

