/* Custom CSS Design System - Urban Craft */

:root {
  /* Colors */
  --color-bg-deep: #0d0914;
  --color-bg-card: #150f1f;
  --color-bg-input: #1f162e;
  --color-accent: #9333ea;
  --color-accent-rgb: 147, 51, 234;
  --color-accent-hover: #a855f7;
  --color-text-main: #f4f4f5;
  --color-text-muted: #a1a1aa;
  --color-border: rgba(147, 51, 234, 0.15);
  --color-grid-line: rgba(147, 51, 234, 0.08);

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Outfit', sans-serif;
  --font-tech: 'Space Grotesk', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 50%, #121215 0%, var(--color-bg-deep) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Ambient glow nodes */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: blur(140px);
}
.glow-1 {
  top: -10%;
  right: -10%;
  background: var(--color-accent);
  opacity: 0.2;
}
.glow-2 {
  top: 50%;
  left: -15%;
  background: #7e22ce;
  opacity: 0.15;
}

/* Technical Grid Overlay */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, var(--color-grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--color-grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

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

/* Utility Classes */
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.45);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Minimalist Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-link {
  text-decoration: none;
  color: var(--color-text-main);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skyline-logo {
  height: 40px;
  width: 160px;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.logo-link:hover .skyline-logo {
  color: var(--color-accent-hover);
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--color-text-main);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-family: var(--font-tech);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-text-main);
}

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

.nav-btn-accent {
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.04);
}

.nav-btn-accent:hover {
  border-color: var(--color-accent);
  background: rgba(168, 85, 247, 0.1);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.nav-btn-accent::after {
  display: none;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tech);
  font-size: 0.85rem;
}

.lang-divider {
  color: var(--color-border);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: var(--color-text-main);
}

.lang-btn.active {
  color: var(--color-accent-hover);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text-main);
  left: 0;
  transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile Menu Open State */
.mobile-nav-toggle.open .hamburger {
  background: transparent;
}
.mobile-nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.mobile-nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav-link {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
  color: var(--color-accent-hover);
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Cinematic Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 2rem 60px;
  overflow: hidden;
  z-index: 2;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  mix-blend-mode: lighten;
  filter: grayscale(100%) contrast(120%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, var(--color-bg-deep) 90%),
              linear-gradient(to bottom, transparent 60%, var(--color-bg-deep) 100%);
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 3;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--color-accent-hover);
}

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

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.title-primary {
  color: var(--color-text-main);
  display: block;
}

.title-divider {
  display: none;
}

.title-secondary {
  color: var(--color-text-muted);
  font-weight: 300;
  display: block;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-footer-indicators {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 4rem;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  z-index: 3;
  padding: 0 2rem;
}

.indicator {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.indicator-label {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

.indicator-value {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  font-weight: 300;
}

/* The Exhibition (Lookbook Grid) */
.exhibition-section {
  background-color: rgba(10, 10, 11, 0.3);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--color-bg-card);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(105%);
  transition: var(--transition-smooth);
}

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

.card-meta {
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.card-category {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--color-accent-hover);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.card-description {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  line-height: 1.5;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  opacity: 0.8;
}

/* Card hover states */
.gallery-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
  transform: translateY(-4px);
}

.gallery-card:hover .card-image {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(100%);
}

.gallery-card:hover .card-meta {
  transform: translateY(0);
}

.gallery-card:hover .card-description {
  opacity: 1;
}

.gallery-card:hover .card-btn {
  color: var(--color-accent-hover);
}

/* The Workflow Section */
.workflow-section {
  border-bottom: 1px solid var(--color-border);
}

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

.workflow-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.workflow-card:hover::before {
  transform: scaleX(1);
}

.workflow-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.workflow-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.workflow-card:hover .workflow-icon-wrapper {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

.workflow-icon {
  width: 28px;
  height: 28px;
}

.workflow-card-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.workflow-card-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

/* About/Specs Section */
.about-section {
  background-color: rgba(10, 10, 11, 0.2);
  border-bottom: 1px solid var(--color-border);
}

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

.about-visual {
  position: relative;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 3rem;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grid-card-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dot-pattern {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--color-border) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.5;
}

.tech-spec-board {
  width: 100%;
  z-index: 2;
  font-family: var(--font-tech);
}

.tech-row {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.tech-row:last-child {
  border-bottom: none;
}

.tech-label {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.tech-val {
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* Contact/Inquiry Section */
.contact-section {
  background-color: var(--color-bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-subtitle {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-label {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--color-accent-hover);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.detail-value {
  font-size: 1.3rem;
  font-family: var(--font-title);
  color: var(--color-text-main);
  text-decoration: none;
  transition: var(--transition-fast);
}

a.detail-value:hover {
  color: var(--color-accent);
}

.badge-belgrade {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  align-self: flex-start;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
}

.badge-star {
  color: var(--color-accent);
}

/* Contact Form */
.contact-form-container {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.form-group label {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background-color: var(--color-bg-input);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-main);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: #52525b;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

.form-group select option {
  background-color: var(--color-bg-card);
  color: var(--color-text-main);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  border-radius: 4px;
}

.form-feedback {
  font-size: 0.9rem;
  font-family: var(--font-tech);
  margin-top: 0.5rem;
  text-align: center;
  display: none;
}

.form-feedback.success {
  display: block;
  color: #4ade80;
}

.form-feedback.error {
  display: block;
  color: #f87171;
}

/* Footer Section */
.footer {
  border-top: 1px solid var(--color-border);
  background-color: #050506;
  padding: 4rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem;
  align-items: center;
}

.footer-brand {
  grid-column: 1;
}

.footer-tagline {
  margin-top: 0.75rem;
  max-width: 400px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-links-group {
  grid-column: 2;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-social-link {
  font-family: var(--font-tech);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.footer-social-link:hover {
  color: var(--color-accent-hover);
}

.footer-copy {
  grid-column: 1 / span 2;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* Immersive Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  overflow-y: auto;
  padding: 2.5rem 1.5rem;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  font-size: 3.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-text-main);
  transform: rotate(90deg);
}

.lightbox-content {
  width: 100%;
  max-width: 1100px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: scale(0.95) translateY(20px);
  transition: var(--transition-smooth);
  margin: auto;
}

.lightbox-modal.open .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lightbox-image-container {
  position: relative;
  aspect-ratio: 4/5;
  background-color: #0c0c0d;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-details {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
}

.lightbox-tag {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--color-accent-hover);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.lightbox-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

.lightbox-desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.specs-heading {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.lightbox-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.spec-tile {
  background-color: var(--color-bg-input);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.lightbox-action-area {
  margin-top: auto;
}

.lightbox-contact-btn {
  width: 100%;
  justify-content: center;
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .admin-form .form-row.flex-4 {
    grid-template-columns: 1fr;
  }
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #a855f7;
}

.lightbox-content {
  display: flex;
  background: #111;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 8px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-image-container {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-details {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.lightbox-meta {
  margin-bottom: 30px;
}

.lightbox-tag {
  color: #a855f7;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.lightbox-title {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
}

.lightbox-desc {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

.specs-heading {
  color: var(--color-text-main);
  font-family: var(--font-tech);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.specs-heading::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

.spec-tile {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.08), rgba(10, 10, 11, 0.8));
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(168, 85, 247, 0.15);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.spec-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: var(--color-accent);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.spec-tile:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
}

.spec-tile:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--color-accent);
}

.spec-lbl {
  display: block;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-val {
  color: var(--color-text-main);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
    overflow-y: auto;
  }
  .lightbox-image-container {
    height: 300px;
    flex: none;
  }
}

/* Admin Dashboard Layout */
.admin-page { background-color: #0d0914; color: #fff; }
.admin-dashboard-layout { display: flex; min-height: 100vh; position: relative; z-index: 10; }
.admin-sidebar { width: 280px; background: rgba(20, 15, 31, 0.95); border-right: 1px solid var(--color-border); backdrop-filter: blur(10px); display: flex; flex-direction: column; }
.admin-sidebar-header { padding: 2rem 1.5rem; border-bottom: 1px solid var(--color-border); display: flex; align-items: center; }
.admin-badge { padding: 3px 6px; border-radius: 4px; background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.3); }
.admin-sidebar-nav { display: flex; flex-direction: column; padding: 1.5rem 0; flex: 1; }
.admin-nav-item { padding: 1rem 1.5rem; color: var(--color-text-muted); text-decoration: none; font-family: var(--font-tech); font-size: 0.9rem; transition: var(--transition-fast); border-left: 3px solid transparent; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(168, 85, 247, 0.1); color: var(--color-text-main); border-left-color: var(--color-accent); }
.back-nav-btn { margin-top: auto; border-top: 1px solid var(--color-border); color: #a855f7; }
.logout-btn-act:hover { background: rgba(239, 68, 68, 0.1); }
.admin-main-content { flex: 1; overflow-y: auto; background: rgba(10, 10, 11, 0.5); }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; }
.admin-view-title { font-family: var(--font-title); font-size: 2rem; color: var(--color-text-main); letter-spacing: 1px; }
.admin-card-container { background: rgba(20, 15, 31, 0.7); border: 1px solid var(--color-border); border-radius: 8px; padding: 2rem; backdrop-filter: blur(5px); margin-bottom: 2rem; }
.card-container-title { font-family: var(--font-tech); font-size: 1.2rem; color: var(--color-accent); margin-bottom: 1.5rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.5rem; }
.settings-group-header { font-family: var(--font-tech); color: #a855f7; font-size: 1.1rem; margin-bottom: 1rem; border-bottom: 1px dashed var(--color-border); padding-bottom: 0.5rem; }
.admin-form label { display: block; font-family: var(--font-tech); font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.products-table th { background: rgba(168, 85, 247, 0.1); font-family: var(--font-tech); font-size: 0.85rem; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--color-border); text-align: left; }
.products-table td { font-size: 0.95rem; vertical-align: middle; border-bottom: 1px solid var(--color-border); }
.products-table tr:hover { background: rgba(255,255,255,0.02); }
