@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #070a13;
  --bg-darker: #03050a;
  --card-bg: rgba(13, 20, 38, 0.45);
  --card-border: rgba(255, 255, 255, 0.07);
  --card-border-glow: rgba(99, 102, 241, 0.3);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --primary: #6366f1; /* Indigo */
  --primary-glow: rgba(99, 102, 241, 0.5);
  --secondary: #0ea5e9; /* Sky Blue */
  --secondary-glow: rgba(14, 165, 233, 0.5);
  --accent: #d946ef; /* Magenta/Pink */
  
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients/Glows */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 70%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-neon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 10, 19, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 20px;
}

.logo-line {
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.logo-line:nth-child(1) { width: 100%; background: var(--accent); }
.logo-line:nth-child(2) { width: 75%; background: var(--primary); }
.logo-line:nth-child(3) { width: 50%; background: var(--secondary); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
}

/* Layer Visualization Container */
.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Layer Slicer Styles */
.slicer-container {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  max-width: 520px;
  align-items: stretch;
  margin: 0 auto;
  --active-color: #d946ef;
  --active-glow: rgba(217, 70, 239, 0.3);
}

.slicer-controls {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 1.5rem 0;
  width: 140px;
  border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.slicer-indicator {
  position: absolute;
  left: -2px;
  width: 2px;
  height: 38px;
  background: var(--active-color);
  box-shadow: 0 0 8px var(--active-color);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.slicer-control-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  opacity: 0.4;
  transition: var(--transition-smooth);
  padding: 0.5rem 0 0.5rem 1rem;
  user-select: none;
}

.slicer-control-item:hover {
  opacity: 0.75;
}

.slicer-control-item.active {
  opacity: 1;
}

.slicer-control-item.active .level-num {
  color: var(--active-color);
  text-shadow: 0 0 10px var(--active-glow);
}

.level-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.level-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.level-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.level-height {
  font-size: 0.7rem;
  font-family: monospace;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Viewport panel simulating architectural interface */
.slicer-viewport {
  flex-grow: 1;
  aspect-ratio: 1;
  position: relative;
  background: rgba(13, 20, 38, 0.65);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 255, 255, 0.1) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  perspective: 1200px;
  cursor: crosshair;
}

/* Subtle mouse-move light reflection glare */
.slicer-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 180px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 80%);
  pointer-events: none;
  z-index: 8;
  transition: opacity 0.3s ease;
}

/* 3D Canvas wrapper holding stacked drawings and scan lines */
.slicer-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86%;
  height: 86%;
  transform-style: preserve-3d;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blueprint-card {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 1rem;
  z-index: 2;
  pointer-events: none;
}

.blueprint-card.active {
  visibility: visible;
}

.blueprint-extrusion-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ext-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(var(--layer-z, 0px));
  filter: brightness(var(--layer-bright, 1)) saturate(1.15) contrast(1.05);
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              clip-path 0.25s linear;
  pointer-events: none;
  opacity: 0;
}

.ext-layer[data-layer-index="0"] {
  background-color: #0b0f19;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.ext-layer.printed {
  opacity: 1;
}

/* Print Height Gauge */
.slicer-gauge {
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 110px;
  width: 5px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateZ(15px);
  z-index: 9;
  user-select: none;
}

.gauge-bar {
  flex-grow: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.gauge-bar.active {
  background: var(--active-color);
  box-shadow: 0 0 6px var(--active-color);
}

/* Glowing laser sweep line */
.scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--active-color), transparent);
  box-shadow: 0 0 12px var(--active-color), 0 0 4px var(--active-color);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transform: translate3d(0, 0, var(--scan-z, 0px));
  transform-style: preserve-3d;
}

.scan-line.scanning {
  animation: scanSweep 0.65s cubic-bezier(0.25, 1, 0.35, 1) forwards;
}

@keyframes scanSweep {
  0% {
    top: 0%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Minimal HUD overlay info */
.slicer-status {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  z-index: 5;
  user-select: none;
}

.slicer-status span {
  color: var(--active-color);
  font-weight: 700;
  transition: var(--transition-smooth);
}

/* Features Grid Section */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(14, 165, 233, 0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-glow);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Feature Showcase Details Split Section */
.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: #0b0f19;
}

.showcase-image img {
  width: 100%;
  display: block;
  transition: var(--transition-smooth);
}

.showcase-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 10, 19, 0) 60%, rgba(7, 10, 19, 0.6) 100%);
  pointer-events: none;
}

.showcase-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.showcase-item {
  display: flex;
  gap: 1.5rem;
}

.showcase-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.7;
}

.showcase-item-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Gallery / Catalog Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  cursor: pointer;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 10, 19, 0.95) 0%, rgba(7, 10, 19, 0.4) 60%, rgba(7, 10, 19, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.gallery-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

/* Call To Action Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(14, 165, 233, 0.03) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(0,0,0,0) 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Contact page forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  padding: 160px 0 100px;
}

.contact-info h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid rgba(99, 102, 241, 0.15);
  font-size: 1.25rem;
}

.contact-detail-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  font-size: 0.95rem;
}

.contact-form-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.form-control {
  background: rgba(7, 10, 19, 0.5);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  background: rgba(7, 10, 19, 0.8);
}

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

/* Custom file upload stylings */
.file-upload-wrapper {
  border: 2px dashed var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: rgba(7, 10, 19, 0.3);
}

.file-upload-wrapper:hover {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.02);
}

.file-upload-icon {
  font-size: 2rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.file-upload-wrapper:hover .file-upload-icon {
  color: var(--primary);
  transform: translateY(-2px);
}

.file-upload-wrapper input[type="file"] {
  display: none;
}

.file-upload-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.file-upload-text span {
  color: var(--primary);
  font-weight: 600;
}

.file-upload-name {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 500;
}

/* Success State Styles */
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-msg h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-msg p {
  margin-bottom: 2rem;
  max-width: 400px;
}

/* Footer styling */
footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--card-border);
  padding: 5rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-desc {
  max-width: 320px;
}

.footer-logo-desc p {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.footer-nav-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-col a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-nav-col a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* In main.js we will handle toggle class */
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--card-border);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 99;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta-banner {
    padding: 4rem 1.5rem;
  }
  
  .cta-banner h2 {
    font-size: 2.2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  /* Mobile Layer Slicer Overrides */
  .slicer-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 100%;
  }

  .slicer-controls {
    flex-direction: row;
    width: 100%;
    max-width: 320px;
    justify-content: space-between;
    border-left: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding: 0 0 0.8rem 0;
  }

  .slicer-indicator {
    left: 0;
    bottom: -2px;
    top: auto;
    height: 2px;
    width: 90px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .slicer-control-item {
    padding: 0.25rem 0.5rem;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
  }

  .level-num {
    font-size: 1.1rem;
  }

  .level-name {
    font-size: 0.75rem;
  }

  .level-height {
    display: none;
  }

  .slicer-viewport {
    width: 100%;
    max-width: 380px;
  }
}
