/* ============================================
   FUTURISTIC CAPSULE WARDROBE CONSULTING
   Glassmorphism & Data-Driven Aesthetic
   ============================================ */

:root {
  /* Color Palette */
  --color-aurora-black: #0D1117;
  --color-glacier-cyan: #00F2FF;
  --color-frost-white: #F0F6FC;
  --color-translucent-slate: rgba(22, 27, 34, 0.7);
  --color-slate-dark: #161B22;
  --color-slate-medium: #21262D;
  --color-slate-light: #30363D;
  
  /* Typography */
  --font-data: 'JetBrains Mono', 'Courier New', monospace;
  --font-heading: 'Michroma', 'Syne', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 242, 255, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 242, 255, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 242, 255, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --header-height: 80px;
  --max-width: 1400px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-aurora-black);
  color: var(--color-frost-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background Grid Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--color-frost-white) 0%, var(--color-glacier-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--color-frost-white);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-frost-white);
}

p {
  margin-bottom: var(--space-md);
  color: rgba(240, 246, 252, 0.8);
}

a {
  color: var(--color-glacier-cyan);
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover {
  color: var(--color-frost-white);
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-translucent-slate);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 242, 255, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.header-brand {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.75rem);
  color: var(--color-frost-white);

}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.nav-link {
  color: var(--color-frost-white);
  font-size: 0.95rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-glacier-cyan);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--color-glacier-cyan);
  background: rgba(0, 242, 255, 0.1);
}

/* Burger Menu Button - Always at end of header */
.burger-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-glacier-cyan);
  color: var(--color-glacier-cyan);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-base);
  position: relative;
  z-index: 100001;
}

.burger-toggle:hover {
  background: rgba(0, 242, 255, 0.1);
  box-shadow: var(--shadow-glow);
}

.burger-line {
  width: 20px;
  height: 2px;
  background: var(--color-glacier-cyan);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-translucent-slate);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(0, 242, 255, 0.3);
  z-index: 1000;
  transition: right var(--transition-base);
  padding: var(--space-2xl) var(--space-lg);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.mobile-nav-link {
  color: var(--color-frost-white);
  font-size: 1.1rem;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: block;
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.mobile-nav-link:hover {
  border-color: var(--color-glacier-cyan);
  background: rgba(0, 242, 255, 0.1);
  color: var(--color-glacier-cyan);
  transform: translateX(5px);
}

/* Responsive Header */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
  }
  
  .header-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .header-brand {
    font-size: 1.1rem;
  }
}

/* ============================================
   HERO BANNERS (Full Width)
   ============================================ */

.hero-banner {
  width: 100vw;
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-3xl) var(--space-lg);
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-aurora-black) 0%, var(--color-slate-dark) 100%);
}

.hero-content {
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
  z-index: 3;
  position: relative;
}

.hero-title {
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 10px rgba(13, 17, 23, 0.8);
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: rgba(240, 246, 252, 0.95);
  text-shadow: 0 2px 8px rgba(13, 17, 23, 0.7);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 17, 23, 0.85) 0%,
    rgba(22, 27, 34, 0.75) 50%,
    rgba(13, 17, 23, 0.85) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.content-section {
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--color-glacier-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* Glass Cards */
.glass-card {
  background: var(--color-translucent-slate);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  border-color: var(--color-glacier-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

/* Grid Layouts */
.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

/* Image Containers */
.image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0, 242, 255, 0.2);
  transition: all var(--transition-base);
}

.image-container:hover {
  border-color: var(--color-glacier-cyan);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.95),
    transparent
  );
  color: var(--color-frost-white);
  font-size: 0.875rem;
  font-family: var(--font-data);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  border: 1px solid var(--color-glacier-cyan);
  color: var(--color-glacier-cyan);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-glacier-cyan);
  transition: left var(--transition-base);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--color-aurora-black);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-glacier-cyan);
  color: var(--color-aurora-black);
}

.btn-primary::before {
  background: var(--color-frost-white);
}

.btn-primary:hover {
  color: var(--color-aurora-black);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-frost-white);
  font-size: 0.95rem;
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-translucent-slate);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-frost-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-glacier-cyan);
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.1);
  background: rgba(22, 27, 34, 0.9);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-glacier-cyan);
}

.checkbox-label {
  font-size: 0.9rem;
  color: rgba(240, 246, 252, 0.8);
  line-height: 1.5;
}

/* ============================================
   GOOGLE MAPS
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 242, 255, 0.2);
  margin-bottom: var(--space-xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   PRODUCTS
   ============================================ */

.product-card {
  background: var(--color-translucent-slate);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-glacier-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0, 242, 255, 0.2);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-frost-white);
}

.product-description {
  flex-grow: 1;
  margin-bottom: var(--space-md);
  color: rgba(240, 246, 252, 0.8);
}

.product-price {
  font-family: var(--font-data);
  font-size: 1.25rem;
  color: var(--color-glacier-cyan);
  font-weight: 600;
  margin-top: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-translucent-slate);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 242, 255, 0.2);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-3xl);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--color-glacier-cyan);
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: var(--space-sm);
}

.footer-link {
  color: rgba(240, 246, 252, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.footer-link:hover {
  color: var(--color-glacier-cyan);
  padding-left: 5px;
}

.footer-info {
  color: rgba(240, 246, 252, 0.6);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-copyright {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(0, 242, 255, 0.1);
  color: rgba(240, 246, 252, 0.5);
  font-size: 0.875rem;
  font-family: var(--font-data);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }
  
  .hero-banner {
    min-height: 50vh;
    padding: var(--space-xl) var(--space-md);
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }
  
  main {
    padding: var(--space-lg) var(--space-md);
  }
  
  .glass-card {
    padding: var(--space-lg);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
  }
  
  .hero-banner {
    min-height: 40vh;
  }
  
  .btn {
    width: 100%;
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .site-header {
    padding: var(--space-sm);
  }
  
  .hero-banner {
    padding: var(--space-lg) var(--space-sm);
  }
  
  main {
    padding: var(--space-md) var(--space-sm);
  }
}

/* ============================================
   SPECIAL PAGES
   ============================================ */

.error-page,
.thank-you-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.error-code {
  font-family: var(--font-data);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-glacier-cyan);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: var(--space-xl);
}

.policy-section h2 {
  color: var(--color-glacier-cyan);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.policy-section h3 {
  color: var(--color-frost-white);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.policy-date {
  font-family: var(--font-data);
  color: var(--color-glacier-cyan);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
  text-align: center;
  padding: var(--space-md);
  background: var(--color-translucent-slate);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 242, 255, 0.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.scan-effect {
  position: relative;
  overflow: hidden;
}

.scan-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 255, 0.2),
    transparent
  );
  animation: scan 3s infinite;
}

/* Loading States */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

