:root {
  /* Colors */
  --color-obsidian: #08090B;
  --color-iron: #14171C;
  --color-nebula: #1C1F24;
  --color-void: #22252B;
  --color-steel: #2A2F36;
  --color-primary: #4A90E2;
  --color-primary-hover: #357ABD;
  --color-text: #E8E8E8;
  --color-text-light: #B0B0B0;
  --color-accent: #5CB85C;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Playfair Display', 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;
  
  /* 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.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-obsidian);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  background: linear-gradient(180deg, var(--color-iron) 0%, rgba(20, 23, 28, 0.95) 100%);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-secondary);
  font-size: var(--font-size-xl);
  font-weight: 700;
  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;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-text);
  background: var(--color-nebula);
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 23, 28, 0.3) 50%, transparent 100%);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  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, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-sm);
}

/* 3D Slider */
.slider-container {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  perspective: 1200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-obsidian) 100%);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.slide {
  position: absolute;
  width: 80%;
  max-width: 800px;
  height: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(0);
  opacity: 0;
  transition: all var(--transition-slow);
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(200px);
  z-index: 3;
}

.slide.prev {
  opacity: 0.6;
  transform: translate(-50%, -50%) rotateY(25deg) translateZ(-100px);
  z-index: 2;
}

.slide.next {
  opacity: 0.6;
  transform: translate(-50%, -50%) rotateY(-25deg) translateZ(-100px);
  z-index: 2;
}

.slide-content {
  padding: var(--space-2xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.slide-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.slide-content p {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-xl);
}

.slider-controls {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-md);
  z-index: 10;
}

.slider-btn {
  background: var(--color-steel);
  border: 2px solid var(--color-primary);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.slider-btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slider-dots {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  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 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
}

/* Cards */
.card {
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(74, 144, 226, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  border-color: rgba(74, 144, 226, 0.3);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

/* Forms */
.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);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-obsidian);
  border: 2px solid var(--color-steel);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-nebula);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.form-checkbox input {
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  cursor: pointer;
}

/* Contact Page Special Design */
.contact-hero {
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: var(--space-3xl) auto;
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(74, 144, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.contact-info-item {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-nebula) 0%, var(--color-void) 100%);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.contact-info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 144, 226, 0.3);
}

.contact-info-item i {
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* Map */
.map-container {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: var(--color-iron);
  padding: var(--space-xl) 0;
  margin-top: var(--space-3xl);
  border-top: 1px solid var(--color-nebula);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  list-style: none;
  margin-bottom: var(--space-md);
}

.footer-menu a {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--color-text);
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

/* Privacy Policy Popup */
.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - var(--space-xl));
  background: var(--color-void);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
}

.privacy-popup.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.privacy-popup-content {
  margin-bottom: var(--space-md);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

/* 404 Page */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.error-message {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
}

/* Thank You Page */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
}

/* Product Cards */
.product-card {
  background: var(--color-void);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 250px;
  background: var(--color-nebula);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: var(--font-size-3xl);
}

.product-info {
  padding: var(--space-lg);
}

.product-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-md);
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-iron);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .slider-container {
    height: 60vh;
    min-height: 400px;
  }
  
  .slide {
    width: 90%;
    height: 80%;
  }
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .contact-form-wrapper {
    padding: var(--space-lg);
  }
  
  .error-code {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }
  
  .header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .logo {
    font-size: var(--font-size-lg);
  }
  
  .slider-container {
    height: 50vh;
    min-height: 350px;
  }
  
  .slide-content {
    padding: var(--space-lg);
  }
  
  .slide-content h2 {
    font-size: var(--font-size-xl);
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-menu {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 320px) {
  :root {
    font-size: 12px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
    width: 100%;
  }
  
  /* Header */
  .header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .logo {
    font-size: var(--font-size-base);
  }
  
  .nav-menu {
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  
  .nav-menu a {
    font-size: var(--font-size-xs);
    padding: var(--space-xs);
  }
  
  /* Hero Sections */
  .hero-section,
  .products-hero,
  .about-hero,
  .contact-hero-modern {
    min-height: 60vh;
    padding: var(--space-xl) 0;
  }
  
  .hero-title,
  .products-hero-title,
  .about-hero-title,
  .contact-hero-title-modern {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }
  
  .hero-description,
  .products-hero-description,
  .about-hero-description,
  .contact-hero-description-modern {
    font-size: var(--font-size-base);
    padding: 0 var(--space-sm);
  }
  
  .hero-buttons,
  .hero-features {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .hero-badge,
  .products-hero-label,
  .about-hero-label,
  .contact-hero-label-modern,
  .section-label {
    font-size: 0.65rem;
    padding: 0.35rem var(--space-sm);
  }
  
  /* Section Headers */
  .section-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
  }
  
  .section-description {
    font-size: var(--font-size-sm);
    padding: 0 var(--space-sm);
  }
  
  /* Cards */
  .card {
    padding: var(--space-md);
  }
  
  .card-grid {
    gap: var(--space-md);
  }
  
  /* Service Cards */
  .service-card {
    padding: var(--space-md);
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-md);
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
  
  .service-features {
    margin: var(--space-md) 0;
  }
  
  .service-features li {
    font-size: var(--font-size-xs);
    padding: 0.25rem 0;
  }
  
  /* Feature Cards */
  .features-grid {
    gap: var(--space-md);
  }
  
  .feature-card {
    padding: var(--space-md);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  /* Process Timeline */
  .process-step {
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
  
  .process-content {
    padding-top: 0;
  }
  
  /* Products Page */
  .products-grid {
    gap: var(--space-lg);
  }
  
  .product-card-modern {
    border-radius: var(--radius-md);
  }
  
  .product-badge {
    top: var(--space-md);
    right: var(--space-md);
    padding: 0.25rem var(--space-sm);
    font-size: 0.6rem;
  }
  
  .product-image-modern {
    height: 200px;
  }
  
  .product-image-overlay {
    width: 80px;
    height: 80px;
  }
  
  .product-image-overlay i {
    font-size: 2.5rem;
  }
  
  .product-content-modern {
    padding: var(--space-md);
  }
  
  .product-category {
    font-size: 0.6rem;
    padding: 0.25rem var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  
  .product-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
  }
  
  .product-description {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
  }
  
  .product-features-list {
    margin-bottom: var(--space-md);
  }
  
  .product-features-list li {
    font-size: var(--font-size-xs);
    padding: 0.35rem 0;
  }
  
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    padding-top: var(--space-md);
  }
  
  .product-price-wrapper {
    text-align: center;
  }
  
  .product-amount {
    font-size: var(--font-size-2xl);
  }
  
  .product-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Benefits Grid */
  .benefits-grid {
    gap: var(--space-md);
  }
  
  .benefit-item {
    padding: var(--space-md);
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
  }
  
  .benefit-icon i {
    font-size: 1.5rem;
  }
  
  /* Mission Grid */
  .mission-grid {
    gap: var(--space-xl);
  }
  
  .mission-content h2 {
    font-size: var(--font-size-2xl);
  }
  
  .mission-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .stat-number {
    font-size: var(--font-size-2xl);
  }
  
  .stat-label {
    font-size: var(--font-size-xs);
  }
  
  .mission-card {
    padding: var(--space-md);
  }
  
  .mission-card i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }
  
  /* Story Timeline */
  .story-item {
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .story-icon {
    width: 50px;
    height: 50px;
  }
  
  .story-icon i {
    font-size: 1.3rem;
  }
  
  /* Services Overview */
  .services-overview {
    gap: var(--space-md);
  }
  
  .service-overview-item {
    padding: var(--space-md);
  }
  
  .service-overview-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
  }
  
  .service-overview-icon i {
    font-size: 1.5rem;
  }
  
  /* Values Grid */
  .values-grid {
    gap: var(--space-md);
  }
  
  .value-card {
    padding: var(--space-md);
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
  }
  
  .value-icon i {
    font-size: 1.5rem;
  }
  
  /* Contact Page */
  .contact-layout {
    gap: var(--space-xl);
  }
  
  .contact-form-header,
  .contact-info-header {
    margin-bottom: var(--space-lg);
  }
  
  .contact-form-wrapper-modern {
    padding: var(--space-md);
  }
  
  .form-group-modern {
    margin-bottom: var(--space-md);
  }
  
  .form-label-modern {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-xs);
  }
  
  .form-input-modern,
  .form-textarea-modern {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
  }
  
  .form-textarea-modern {
    min-height: 100px;
  }
  
  .contact-info-cards {
    gap: var(--space-md);
  }
  
  .contact-info-card-modern {
    padding: var(--space-md);
  }
  
  .contact-info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
  }
  
  .contact-info-icon i {
    font-size: 1.5rem;
  }
  
  .contact-info-card-modern h3 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
  }
  
  .contact-info-card-modern p {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-sm);
  }
  
  .contact-link {
    font-size: var(--font-size-xs);
  }
  
  .map-container-modern {
    height: 280px;
    border-radius: var(--radius-md);
  }
  
  /* 404 Page */
  .error-page-modern {
    min-height: 70vh;
    padding: var(--space-xl) 0;
  }
  
  .error-number {
    font-size: 6rem;
  }
  
  .error-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .error-icon-wrapper i {
    font-size: 2rem;
  }
  
  .error-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }
  
  .error-description {
    font-size: var(--font-size-base);
    padding: 0 var(--space-sm);
  }
  
  .error-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }
  
  .error-btn-primary,
  .error-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .error-suggestions {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
  }
  
  .error-suggestions-title {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-md);
  }
  
  .error-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .error-links a {
    width: 100%;
    padding: var(--space-md);
    min-width: auto;
  }
  
  .error-links a i {
    font-size: 1.2rem;
  }
  
  .error-links a span {
    font-size: var(--font-size-xs);
  }
  
  /* Thank You Page */
  .thank-you-page-modern {
    min-height: 70vh;
    padding: var(--space-xl) 0;
  }
  
  .thank-you-icon-circle {
    width: 120px;
    height: 120px;
  }
  
  .thank-you-icon-inner i {
    font-size: 3rem;
  }
  
  .thank-you-label {
    font-size: 0.65rem;
    padding: 0.35rem var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  .thank-you-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }
  
  .thank-you-description {
    font-size: var(--font-size-base);
    padding: 0 var(--space-sm);
  }
  
  .thank-you-info {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .thank-you-info-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .thank-you-info-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto;
  }
  
  .thank-you-info-icon i {
    font-size: 1.1rem;
  }
  
  .thank-you-info-text h3 {
    font-size: var(--font-size-sm);
    margin-bottom: 0.25rem;
  }
  
  .thank-you-info-text p {
    font-size: var(--font-size-xs);
  }
  
  .thank-you-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
  }
  
  .thank-you-btn-primary,
  .thank-you-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .thank-you-explore {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
  }
  
  .thank-you-explore-title {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-md);
  }
  
  .thank-you-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .thank-you-links a {
    width: 100%;
    padding: var(--space-md);
    min-width: auto;
  }
  
  .thank-you-links a i {
    font-size: 1.2rem;
  }
  
  .thank-you-links a span {
    font-size: var(--font-size-xs);
  }
  
  /* CTA Section */
  .cta-section {
    padding: var(--space-xl) 0;
  }
  
  .cta-content h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
  }
  
  .cta-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer {
    padding: var(--space-lg) 0;
  }
  
  .footer-menu {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .footer-menu a {
    font-size: var(--font-size-xs);
  }
  
  .footer-copyright {
    font-size: 0.65rem;
    margin-top: var(--space-sm);
  }
  
  /* Privacy Popup */
  .privacy-popup {
    bottom: var(--space-sm);
    left: var(--space-sm);
    right: var(--space-sm);
    width: auto;
    transform: none;
    padding: var(--space-md);
  }
  
  .privacy-popup-content h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
  }
  
  .privacy-popup-content p {
    font-size: var(--font-size-xs);
  }
  
  .privacy-popup-buttons {
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }
  
  .privacy-popup-buttons .btn {
    width: 100%;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 50%, var(--color-obsidian) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(92, 184, 92, 0.1) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--color-accent);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-features {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.hero-feature-item i {
  color: var(--color-accent);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-description {
  color: var(--color-text-light);
  font-size: var(--font-size-md);
  margin-top: var(--space-md);
}

.section-alt {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 23, 28, 0.4) 50%, transparent 100%);
}

/* Service Cards */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-icon i {
  font-size: 2rem;
  color: var(--color-text);
}

.service-features {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.service-features li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  width: fit-content;
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
}

.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0; }
}

.feature-icon i {
  font-size: 2rem;
  color: var(--color-text);
}

.feature-card h4 {
  margin-bottom: var(--space-md);
}

/* Process Timeline */
.process-timeline {
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-content {
  flex: 1;
  padding-top: var(--space-sm);
}

.process-content h3 {
  margin-bottom: var(--space-sm);
}

/* About Hero */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 50%, var(--color-obsidian) 100%);
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(92, 184, 92, 0.1) 0%, transparent 50%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-label {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.about-hero-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Mission Grid */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.mission-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-lg);
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mission-visual {
  display: grid;
  gap: var(--space-lg);
}

.mission-card {
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 144, 226, 0.2);
  text-align: center;
}

.mission-card i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.mission-card h3 {
  margin-bottom: var(--space-sm);
}

/* Story Timeline */
.story-timeline {
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
}

.story-item {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  align-items: flex-start;
}

.story-item:last-child {
  margin-bottom: 0;
}

.story-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-icon i {
  font-size: 1.8rem;
  color: var(--color-text);
}

.story-content {
  flex: 1;
}

.story-content h3 {
  margin-bottom: var(--space-md);
}

.story-content p {
  margin-bottom: var(--space-md);
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Services Overview */
.services-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.service-overview-item {
  text-align: center;
  padding: var(--space-xl);
}

.service-overview-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.service-overview-icon i {
  font-size: 2rem;
  color: var(--color-text);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--color-text);
}

.value-card h4 {
  margin-bottom: var(--space-md);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 100%);
}

.cta-pattern {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
  50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-lg);
}

.cta-content p {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding: var(--space-2xl) 0;
  }
  
  .hero-features {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .story-item {
    flex-direction: column;
    text-align: center;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .process-number {
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services-overview {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .about-hero-title {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: var(--font-size-2xl);
  }
}

/* Products Hero */
.products-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.products-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.products-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 50%, var(--color-obsidian) 100%);
}

.products-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 50%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 60% 30%, rgba(92, 184, 92, 0.1) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

.products-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.products-hero-label {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.products-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.products-hero-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

/* Modern Product Card */
.product-card-modern {
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(74, 144, 226, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
  border-color: rgba(74, 144, 226, 0.3);
}

.product-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-text);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.product-badge.premium {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--color-obsidian);
}

.product-image-modern {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-nebula) 0%, var(--color-steel) 100%);
}

.product-image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 120px;
  height: 120px;
  background: rgba(74, 144, 226, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(74, 144, 226, 0.3);
}

.product-image-overlay i {
  font-size: 3.5rem;
  color: var(--color-primary);
}

.product-image-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(92, 184, 92, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card-modern:hover .product-image-gradient {
  opacity: 1;
}

.product-content-modern {
  padding: var(--space-2xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  width: fit-content;
}

.product-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.product-description {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  flex: 1;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.product-features-list li i {
  color: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(74, 144, 226, 0.1);
  flex-wrap: wrap;
}

.product-price-wrapper {
  display: flex;
  flex-direction: column;
}

.product-price-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.product-currency {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-primary);
}

.product-amount {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  white-space: nowrap;
}

.product-btn i {
  transition: transform var(--transition-fast);
}

.product-btn:hover i {
  transform: translateX(4px);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.benefit-item {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.benefit-icon i {
  font-size: 1.8rem;
  color: var(--color-text);
}

.benefit-item h4 {
  margin-bottom: var(--space-md);
}

.benefit-item p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

/* Products Page Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .product-btn {
    width: 100%;
    justify-content: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .products-hero {
    min-height: 50vh;
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .product-image-modern {
    height: 220px;
  }
  
  .product-content-modern {
    padding: var(--space-lg);
  }
  
  .product-amount {
    font-size: var(--font-size-2xl);
  }
}

/* Contact Page Modern Styles */
.contact-hero-modern {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.contact-hero-background-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-hero-gradient-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 50%, var(--color-obsidian) 100%);
}

.contact-hero-pattern-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(74, 144, 226, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(92, 184, 92, 0.15) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

.contact-hero-content-modern {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-label-modern {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.contact-hero-title-modern {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.contact-hero-description-modern {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
}

.contact-form-section {
  position: relative;
}

.contact-form-header {
  margin-bottom: var(--space-2xl);
}

.contact-form-header h2 {
  margin-bottom: var(--space-sm);
}

.contact-form-header p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.contact-form-wrapper-modern {
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74, 144, 226, 0.2);
  box-shadow: var(--shadow-lg);
}

.form-group-modern {
  margin-bottom: var(--space-xl);
}

.form-label-modern {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  font-weight: 500;
}

.form-label-modern i {
  color: var(--color-primary);
  width: 20px;
}

.form-input-modern,
.form-textarea-modern {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-obsidian);
  border: 2px solid var(--color-steel);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.form-input-modern:focus,
.form-textarea-modern:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-nebula);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-textarea-modern {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox-modern {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.form-checkbox-modern input {
  margin-top: 0.25rem;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.form-checkbox-modern label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  cursor: pointer;
}

.contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.contact-submit-btn i {
  transition: transform var(--transition-fast);
}

.contact-submit-btn:hover i {
  transform: translateX(4px);
}

.contact-info-section {
  position: relative;
}

.contact-info-header {
  margin-bottom: var(--space-2xl);
}

.contact-info-header h2 {
  margin-bottom: var(--space-sm);
}

.contact-info-header p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card-modern {
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all var(--transition-base);
}

.contact-info-card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: var(--shadow-md);
}

.contact-info-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-info-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}

.contact-info-icon i {
  font-size: 1.8rem;
  color: var(--color-text);
}

.contact-info-card-modern h3 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.contact-info-card-modern p {
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  text-align: center;
}

.contact-link:hover {
  color: var(--color-primary-hover);
  gap: var(--space-sm);
}

.contact-link i {
  font-size: var(--font-size-xs);
}

.map-container-modern {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.map-container-modern iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 404 Page Modern Styles */
.error-page-modern {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.error-page-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.error-page-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 50%, var(--color-obsidian) 100%);
}

.error-page-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(92, 184, 92, 0.1) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

.error-content-modern {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-3xl);
}

.error-number-wrapper {
  position: relative;
  display: inline-block;
}

.error-number {
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.error-number-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
  z-index: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.error-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(74, 144, 226, 0.3);
  backdrop-filter: blur(10px);
}

.error-icon-wrapper i {
  font-size: 3rem;
  color: var(--color-primary);
  animation: search-rotate 3s ease-in-out infinite;
}

@keyframes search-rotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}

.error-text {
  margin-bottom: var(--space-2xl);
}

.error-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}

.error-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.error-btn-primary,
.error-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.error-suggestions {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.error-suggestions-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.error-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.error-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all var(--transition-base);
  min-width: 120px;
}

.error-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: var(--shadow-md);
}

.error-links a i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.error-links a span {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

/* Thank You Page Modern Styles */
.thank-you-page-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.thank-you-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.thank-you-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-iron) 0%, var(--color-nebula) 50%, var(--color-obsidian) 100%);
}

.thank-you-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(92, 184, 92, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(74, 144, 226, 0.15) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

.thank-you-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 40%;
  left: 80%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  top: 30%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
  50% { transform: translateY(-30px) translateX(20px); opacity: 1; }
}

.thank-you-content-modern {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon-wrapper {
  margin-bottom: var(--space-3xl);
}

.thank-you-icon-circle {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
}

.thank-you-icon-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent), #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: scaleIn 0.6s ease;
}

.thank-you-icon-inner i {
  font-size: 4rem;
  color: var(--color-text);
}

.thank-you-icon-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thank-you-text {
  margin-bottom: var(--space-3xl);
}

.thank-you-label {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(92, 184, 92, 0.2);
  border: 1px solid rgba(92, 184, 92, 0.3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.thank-you-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.thank-you-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.thank-you-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-align: left;
}

.thank-you-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thank-you-info-icon i {
  color: var(--color-text);
  font-size: 1.3rem;
}

.thank-you-info-text h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
}

.thank-you-info-text p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin: 0;
}

.thank-you-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.thank-you-btn-primary,
.thank-you-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.thank-you-explore {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.thank-you-explore-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.thank-you-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-void) 0%, var(--color-nebula) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all var(--transition-base);
  min-width: 120px;
}

.thank-you-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 144, 226, 0.3);
  box-shadow: var(--shadow-md);
}

.thank-you-links a i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.thank-you-links a span {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

/* Responsive Updates for New Pages */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .thank-you-info {
    grid-template-columns: 1fr;
  }
  
  .error-links,
  .thank-you-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map-container-modern {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-hero-modern,
  .error-page-modern,
  .thank-you-page-modern {
    min-height: 70vh;
    padding: var(--space-2xl) 0;
  }
  
  .error-links,
  .thank-you-links {
    flex-direction: column;
    width: 100%;
  }
  
  .error-links a,
  .thank-you-links a {
    width: 100%;
  }
}

