    :root {
      /* УЛТРА ПРЕМИУМ ЦВЕТОВА ПАЛИТРА */
      --bg: #050505;
      --card: #0a0a0a;
      --text: #ffffff;
      --muted: #888888;
      --accent: #ff2a00;      /* ултра-червен */
      --accent2: #ff5500;     /* пламъчен оранжев */
      --accent3: #ff8800;     /* жега */
      --line: #1a1a1a;
      --metal: linear-gradient(135deg, #0a0a0a, #222, #0a0a0a, #333, #0a0a0a);
      --shadow: 0 15px 50px rgba(255, 42, 0, 0.25);
      --shadow-hover: 0 25px 60px rgba(255, 42, 0, 0.4);
      --glow: 0 0 30px rgba(255, 42, 0, 0.7);
      --radius: 0;
    }

    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }
    
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }
    
    body {
      font-family: 'Space Grotesk', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.8;
      overflow-x: hidden;
      position: relative;
      min-height: 100vh;
    }

    /* Пламенна зареждаща анимация */
    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      opacity: 1;
      transition: opacity 0.8s ease-out;
    }

    .loading-overlay.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loading-logo {
      font-family: 'Orbitron', monospace;
      font-size: 64px;
      font-weight: 900;
      color: var(--accent);
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 6px;
      text-shadow: 
        0 0 30px var(--accent),
        0 0 60px var(--accent),
        0 0 100px var(--accent2);
      animation: loadingPulse 2s infinite alternate;
    }

    @keyframes loadingPulse {
      0% { 
        text-shadow: 
          0 0 20px var(--accent),
          0 0 40px var(--accent),
          0 0 60px var(--accent2);
        transform: scale(1);
      }
      100% { 
        text-shadow: 
          0 0 30px var(--accent),
          0 0 60px var(--accent),
          0 0 90px var(--accent2),
          0 0 120px var(--accent3);
        transform: scale(1.05);
      }
    }

    .loading-subtitle {
      font-family: 'JetBrains Mono', monospace;
      font-size: 18px;
      color: var(--muted);
      letter-spacing: 3px;
      margin-top: 20px;
      text-transform: uppercase;
    }

    .flames {
      position: absolute;
      width: 200px;
      height: 200px;
      pointer-events: none;
    }

    .flame {
      position: absolute;
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      animation: flameRise 1.5s linear forwards;
      box-shadow: 0 0 20px var(--accent);
    }

    @keyframes flameRise {
      0% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
      }
      50% { 
        transform: translateY(-100px) rotate(180deg) scale(1.5);
        opacity: 0.8;
      }
      100% { 
        transform: translateY(-200px) rotate(360deg) scale(0);
        opacity: 0;
      }
    }

    .container { 
      max-width: 1400px; 
      margin: 0 auto; 
      padding: 0 30px; 
    }

    /* Ултра хедър */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(5,5,5,0.95);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255,42,0,0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 15px 0;
    }

    header.scrolled { 
      background: rgba(5,5,5,0.98);
      border-bottom: 1px solid var(--accent);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      padding: 10px 0;
    }

    nav { 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 20px;
      cursor: pointer;
    }

    .logo-svg {
      width: 70px;
      height: 70px;
      filter: drop-shadow(0 0 15px rgba(255,42,0,0.8));
      transition: all 0.3s ease;
    }

    .logo-svg:hover {
      filter: drop-shadow(0 0 25px rgba(255,42,0,1));
      transform: rotate(5deg);
    }

    .logo-text {
      font-family: 'Orbitron', monospace;
      font-size: 32px;
      font-weight: 900;
      color: var(--accent);
      letter-spacing: 4px;
      text-transform: uppercase;
      text-shadow: 0 0 20px rgba(255,42,0,0.7);
      position: relative;
      padding-bottom: 5px;
    }

    .logo-text::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transform: scaleX(0);
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .logo-text:hover::after {
      transform: scaleX(1);
    }

    .nav-links {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 600;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: all 0.3s ease;
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover {
      color: var(--text);
      text-shadow: 0 0 10px var(--accent);
    }

    .nav-links a:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-cta {
      background: transparent;
      color: var(--accent);
      padding: 12px 30px;
      border: 2px solid var(--accent);
      border-radius: 0;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      font-family: 'Orbitron', monospace;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.4s ease;
      margin-left: 20px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transition: left 0.6s ease;
      z-index: -1;
    }

    .nav-cta:hover::before {
      left: 100%;
    }

    .nav-cta:hover {
      color: #000;
      background: var(--accent);
      box-shadow: var(--glow);
      transform: translateY(-2px);
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 12px;
      z-index: 1001;
      background: rgba(255,42,0,0.1);
      border-radius: 4px;
    }

    .burger span {
      width: 30px;
      height: 3px;
      background: var(--accent);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 0 10px var(--accent);
    }

    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
      background: var(--accent2);
    }

    .burger.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(-20px);
    }

    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
      background: var(--accent2);
    }

    /* Епичен Hero секция */
    .hero {
      height: 100vh;
      min-height: 900px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 100px;
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: -3;
      filter: grayscale(100%) contrast(200%) brightness(0.4) sepia(30%) hue-rotate(-10deg);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(
        ellipse at 50% 50%,
        rgba(255,42,0,0.1) 0%,
        rgba(5,5,5,0.95) 70%
      );
      z-index: -2;
    }

    .hero-glow {
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      background: radial-gradient(
        circle at 50% 50%,
        rgba(255,42,0,0.2) 0%,
        transparent 70%
      );
      z-index: -1;
      animation: heroGlow 8s infinite alternate;
    }

    @keyframes heroGlow {
      0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
      100% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
    }

    .hero-content {
      max-width: 1200px;
      padding: 0 30px;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-family: 'Orbitron', monospace;
      font-size: clamp(80px, 15vw, 160px);
      font-weight: 900;
      margin-bottom: 40px;
      color: transparent;
      background: linear-gradient(
        135deg,
        var(--accent) 0%,
        var(--text) 25%,
        var(--accent2) 50%,
        var(--text) 75%,
        var(--accent) 100%
      );
      background-size: 400% 400%;
      -webkit-background-clip: text;
      background-clip: text;
      letter-spacing: 10px;
      text-transform: uppercase;
      line-height: 1;
      animation: titleGradient 8s ease infinite, titleFloat 6s ease-in-out infinite;
      text-shadow: 
        0 0 40px rgba(255,42,0,0.5),
        0 0 80px rgba(255,42,0,0.3),
        0 0 120px rgba(255,42,0,0.2);
    }

    @keyframes titleGradient {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes titleFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .hero-subtitle {
      font-family: 'JetBrains Mono', monospace;
      font-size: 24px;
      margin-bottom: 60px;
      color: var(--text);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
      letter-spacing: 2px;
      text-shadow: 0 0 20px rgba(0,0,0,0.8);
      position: relative;
    }

    .hero-subtitle::after {
      content: '';
      display: block;
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      margin: 30px auto 0;
      border-radius: 2px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #000;
      padding: 25px 60px;
      border: none;
      border-radius: 0;
      text-decoration: none;
      font-weight: 900;
      font-size: 24px;
      font-family: 'Orbitron', monospace;
      letter-spacing: 3px;
      text-transform: uppercase;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 
        0 0 30px rgba(255,42,0,0.5),
        0 0 60px rgba(255,42,0,0.3);
    }

    .hero-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.7s ease;
      z-index: -1;
    }

    .hero-cta:hover::before {
      left: 100%;
    }

    .hero-cta:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 
        0 0 50px rgba(255,42,0,0.8),
        0 0 100px rgba(255,42,0,0.5),
        0 20px 40px rgba(0,0,0,0.4);
      letter-spacing: 5px;
    }

    .hero-cta i {
      font-size: 28px;
      animation: phoneShake 2s infinite;
    }

    @keyframes phoneShake {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(-15deg); }
      75% { transform: rotate(15deg); }
    }

    /* Епични секции */
    .section {
      padding: 150px 0;
      position: relative;
      overflow: hidden;
    }

    .section:nth-child(even) {
      background: linear-gradient(180deg, var(--bg) 0%, rgba(10,10,10,0.8) 100%);
      border-top: 1px solid rgba(255,42,0,0.1);
      border-bottom: 1px solid rgba(255,42,0,0.1);
    }

    .section-title {
      font-family: 'Orbitron', monospace;
      font-size: 56px;
      text-align: center;
      margin-bottom: 100px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 6px;
      position: relative;
      text-shadow: 0 0 30px rgba(255,42,0,0.5);
    }

    .section-title::before,
    .section-title::after {
      content: '⚡';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 40px;
      color: var(--accent2);
      opacity: 0.8;
      animation: boltFlash 3s infinite;
    }

    .section-title::before {
      left: -80px;
    }

    .section-title::after {
      right: -80px;
    }

    @keyframes boltFlash {
      0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
      50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
    }

/* Услуги - Преработен дизайн със субтилни ефекти */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(255,42,0,0.15);
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Тънка светеща линия по краищата */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    transparent 0%, 
    rgba(255,42,0,0.05) 50%, 
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

/* Металически рефлектиращ ефект */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,42,0,0.03) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  transition: transform 0.8s ease;
  z-index: 0;
  opacity: 0;
}

.service-card:hover::after {
  opacity: 1;
  transform: rotate(30deg) translate(20%, 20%);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,42,0,0.4);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.5),
    0 5px 20px rgba(255,42,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.service-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 30px;
  text-shadow: 0 0 15px rgba(255,42,0,0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  display: inline-block;
}

.service-card:hover .service-icon {
  color: var(--accent2);
  transform: translateY(-5px);
  filter: drop-shadow(0 5px 15px rgba(255,85,0,0.4));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(-5px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.service-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  line-height: 1.3;
}

.service-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,42,0,0.5);
  letter-spacing: 1px;
}

.service-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease 0.1s;
}

.service-card:hover p {
  color: rgba(255,255,255,0.95);
  transform: translateY(2px);
}

/* Тънка линия под заглавието */
.service-card h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.5s ease 0.2s;
}

.service-card:hover h3::after {
  width: 100px;
}

/* Светещи точки в ъглите (много субтилни) */
.corner-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(1px);
}

.corner-dot.top-left {
  top: 15px;
  left: 15px;
}

.corner-dot.top-right {
  top: 15px;
  right: 15px;
}

.corner-dot.bottom-left {
  bottom: 15px;
  left: 15px;
}

.corner-dot.bottom-right {
  bottom: 15px;
  right: 15px;
}

.service-card:hover .corner-dot {
  opacity: 0.5;
  animation: dotPulse 2s infinite alternate;
}

@keyframes dotPulse {
  0% { 
    opacity: 0.3;
    box-shadow: 0 0 5px var(--accent);
  }
  100% { 
    opacity: 0.7;
    box-shadow: 0 0 10px var(--accent2);
  }
}

/* Металически текстурен ефект */
.card-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.service-card:hover .card-texture {
  opacity: 0.3;
}

    /* Statement - ултимативен */
    .statement {
      font-family: 'JetBrains Mono', monospace;
      font-size: 28px;
      font-weight: 600;
      text-align: center;
      margin: 100px 0;
      color: var(--text);
      padding: 60px 40px;
      position: relative;
      background: linear-gradient(135deg, rgba(255,42,0,0.05), rgba(255,42,0,0.1));
      border: 1px solid rgba(255,42,0,0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    .statement::before {
      content: '»';
      position: absolute;
      top: 20px;
      left: 40px;
      font-size: 80px;
      color: var(--accent);
      opacity: 0.3;
      font-family: serif;
    }

    .statement::after {
      content: '«';
      position: absolute;
      bottom: 20px;
      right: 40px;
      font-size: 80px;
      color: var(--accent);
      opacity: 0.3;
      font-family: serif;
    }

    /* Галерия - музейно качество */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      height: 300px;
      cursor: pointer;
      border: 1px solid rgba(255,42,0,0.2);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(255,42,0,0.1), transparent);
      z-index: 1;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gallery-item:hover::before {
      opacity: 1;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      filter: grayscale(30%) contrast(110%);
    }

    .gallery-item:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow);
      transform: translateY(-10px);
    }

    .gallery-item:hover img {
      transform: scale(1.15);
      filter: grayscale(0%) contrast(120%);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.9) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 2;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-title {
      font-family: 'Orbitron', monospace;
      font-size: 20px;
      color: var(--text);
      margin-bottom: 10px;
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .gallery-item:hover .gallery-title {
      transform: translateY(0);
    }

    .gallery-subtitle {
      font-size: 14px;
      color: var(--accent);
      font-family: 'JetBrains Mono', monospace;
      transform: translateY(20px);
      transition: transform 0.4s ease 0.1s;
    }

    .gallery-item:hover .gallery-subtitle {
      transform: translateY(0);
    }

    /* Lightbox - ултра премиум */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.97);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .lightbox.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      position: relative;
      animation: lightboxAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes lightboxAppear {
      from {
        opacity: 0;
        transform: scale(0.8) rotateX(10deg);
      }
      to {
        opacity: 1;
        transform: scale(1) rotateX(0);
      }
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 90vh;
      border: 3px solid var(--accent);
      box-shadow: 
        0 0 80px rgba(255,42,0,0.4),
        0 0 160px rgba(255,42,0,0.2);
      animation: lightboxGlow 3s infinite alternate;
    }

    @keyframes lightboxGlow {
      0% { box-shadow: 0 0 60px rgba(255,42,0,0.4), 0 0 120px rgba(255,42,0,0.2); }
      100% { box-shadow: 0 0 80px rgba(255,42,0,0.6), 0 0 160px rgba(255,42,0,0.3); }
    }

    .lightbox-close {
      position: absolute;
      top: -60px;
      right: 0;
      color: var(--accent);
      font-size: 50px;
      cursor: pointer;
      background: none;
      border: none;
      transition: all 0.3s ease;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-close:hover {
      color: var(--accent2);
      transform: rotate(90deg) scale(1.2);
      text-shadow: 0 0 20px var(--accent);
    }

    /* Карта - ултра детайли */
    .map-container {
      margin: 80px 0;
      height: 600px;
      border: 2px solid rgba(255,42,0,0.3);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }

    .map-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(5,5,5,0.7) 0%,
        rgba(255,42,0,0.1) 50%,
        rgba(5,5,5,0.7) 100%
      );
      pointer-events: none;
      z-index: 1;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(100%) invert(100%) contrast(150%) hue-rotate(180deg) sepia(30%);
    }

    /* Отзиви - както в луксозен списание */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 50px;
      margin-top: 80px;
    }

    .testimonial-card {
      background: var(--card);
      border: 1px solid rgba(255,42,0,0.2);
      padding: 50px 40px;
      position: relative;
      transition: all 0.5s ease;
    }

    .testimonial-card:hover {
      border-color: var(--accent);
      transform: translateY(-10px);
      box-shadow: var(--shadow);
    }

    .testimonial-quote {
      position: absolute;
      top: 30px;
      left: 40px;
      font-size: 100px;
      color: var(--accent);
      opacity: 0.1;
      font-family: serif;
      line-height: 1;
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 40px;
      color: var(--text);
      font-size: 20px;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      color: var(--accent);
      font-weight: 700;
      font-family: 'Orbitron', monospace;
      font-size: 20px;
      letter-spacing: 2px;
      border-top: 1px solid rgba(255,42,0,0.3);
      padding-top: 20px;
    }

    /* Контакти - архитектурен подход */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 60px;
      margin-top: 80px;
    }

    .contact-column {
      padding: 40px;
      background: var(--card);
      border: 1px solid rgba(255,42,0,0.2);
      position: relative;
      transition: all 0.5s ease;
    }

    .contact-column:hover {
      border-color: var(--accent);
      transform: translateY(-10px);
      box-shadow: var(--shadow);
    }

    .contact-title {
      font-family: 'Orbitron', monospace;
      font-size: 32px;
      color: var(--accent);
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 3px;
      position: relative;
      padding-bottom: 20px;
    }

    .contact-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 40px;
      font-size: 20px;
    }

    .contact-item i {
      color: var(--accent);
      font-size: 30px;
      width: 60px;
      flex-shrink: 0;
      margin-top: 5px;
      text-shadow: 0 0 15px var(--accent);
    }

    .contact-item strong {
      color: var(--text);
      font-family: 'Orbitron', monospace;
      display: block;
      margin-bottom: 10px;
      font-size: 22px;
      letter-spacing: 1px;
    }

    .contact-item a {
      color: var(--accent);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .contact-item a:hover {
      color: var(--accent2);
      text-shadow: 0 0 10px var(--accent);
    }

    .contact-item a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .contact-item a:hover::after {
      width: 100%;
    }

    .contact-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      background: transparent;
      color: var(--accent);
      padding: 20px 50px;
      border: 2px solid var(--accent);
      border-radius: 0;
      text-decoration: none;
      font-weight: 700;
      font-size: 22px;
      font-family: 'Orbitron', monospace;
      letter-spacing: 3px;
      text-transform: uppercase;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      margin-top: 20px;
      width: 100%;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .contact-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transition: left 0.7s ease;
      z-index: -1;
    }

    .contact-cta:hover::before {
      left: 100%;
    }

    .contact-cta:hover {
      color: #000;
      background: var(--accent);
      transform: translateY(-5px);
      box-shadow: var(--glow);
      letter-spacing: 5px;
    }

    /* Модални прозорци - дизайн като в social-trap.html */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.97);
      z-index: 5000;
      display: none;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
    }

    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal-container {
      width: 90%;
      max-width: 900px;
      background: linear-gradient(145deg, #0a0a0a, #111);
      border: 3px solid var(--accent);
      box-shadow: 
        0 0 80px rgba(255,42,0,0.5),
        0 0 160px rgba(255,42,0,0.3);
      position: relative;
      overflow: hidden;
      animation: modalAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes modalAppear {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(50px) rotateX(10deg);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0);
      }
    }

    .modal-header {
      background: linear-gradient(90deg, #000, #222, #000);
      padding: 25px 40px;
      border-bottom: 2px solid var(--accent);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .modal-header::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent2), transparent);
      animation: headerGlow 3s infinite linear;
    }

    @keyframes headerGlow {
      0% { background-position: -200px 0; }
      100% { background-position: 200px 0; }
    }

    .modal-title {
      font-family: 'Orbitron', monospace;
      font-size: 28px;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 3px;
      text-shadow: 0 0 20px rgba(255,42,0,0.7);
    }

    .modal-close {
      background: transparent;
      border: none;
      color: var(--accent);
      font-size: 40px;
      cursor: pointer;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .modal-close::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,42,0,0.3), transparent);
      transition: left 0.6s ease;
    }

    .modal-close:hover::before {
      left: 100%;
    }

    .modal-close:hover {
      color: var(--accent2);
      transform: rotate(90deg) scale(1.2);
      text-shadow: 0 0 20px var(--accent);
    }

    .modal-content {
      padding: 40px;
      max-height: 70vh;
      overflow-y: auto;
    }

    .modal-content::-webkit-scrollbar {
      width: 10px;
    }

    .modal-content::-webkit-scrollbar-track {
      background: #000;
    }

    .modal-content::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 5px;
    }

    .modal-warning {
      background: rgba(255,42,0,0.1);
      border: 1px solid rgba(255,42,0,0.3);
      padding: 25px;
      margin-bottom: 30px;
      font-family: 'JetBrains Mono', monospace;
      position: relative;
    }

    .modal-warning::before {
      content: '⚠';
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      color: var(--accent);
      opacity: 0.5;
    }

    .modal-social-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin: 30px 0;
    }

    .modal-social-item {
      background: linear-gradient(145deg, #000, #222);
      border: 2px solid rgba(255,42,0,0.3);
      padding: 30px 20px;
      text-align: center;
      text-decoration: none;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .modal-social-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,42,0,0.2), transparent);
      transition: left 0.7s ease;
      z-index: -1;
    }

    .modal-social-item:hover::before {
      left: 100%;
    }

    .modal-social-item:hover {
      border-color: var(--accent);
      transform: translateY(-10px) scale(1.05);
      box-shadow: 
        0 15px 40px rgba(255,42,0,0.3),
        0 0 40px rgba(255,42,0,0.2);
    }

    .modal-social-icon {
      font-size: 48px;
      margin-bottom: 20px;
      color: var(--accent);
      text-shadow: 0 0 20px rgba(255,42,0,0.7);
      transition: all 0.4s ease;
    }

    .modal-social-item:hover .modal-social-icon {
      color: var(--accent2);
      transform: scale(1.2) rotate(10deg);
    }

    .modal-social-name {
      font-family: 'Orbitron', monospace;
      font-size: 20px;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .modal-social-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    .modal-note {
      font-family: 'JetBrains Mono', monospace;
      font-size: 16px;
      color: var(--muted);
      text-align: center;
      margin-top: 40px;
      padding: 20px;
      border-top: 1px solid rgba(255,42,0,0.2);
      border-bottom: 1px solid rgba(255,42,0,0.2);
    }

    /* Футър - монументален */
    footer {
      background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
      padding: 100px 0 50px;
      text-align: center;
      border-top: 3px solid var(--accent);
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent), transparent);
      animation: footerGlow 4s infinite linear;
    }

    @keyframes footerGlow {
      0% { background-position: -200px 0; }
      100% { background-position: 200px 0; }
    }

    .footer-logo {
      font-family: 'Orbitron', monospace;
      font-size: 48px;
      color: var(--accent);
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 6px;
      text-shadow: 
        0 0 30px rgba(255,42,0,0.7),
        0 0 60px rgba(255,42,0,0.3);
      position: relative;
      display: inline-block;
    }

    .footer-logo::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    /* Social Grid - обновен дизайн като в social-trap.html */
    .social-grid {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin: 50px 0;
      flex-wrap: wrap;
    }

    .social-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(145deg, #000, #222);
      border: 3px solid rgba(255,42,0,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 32px;
      text-decoration: none;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(255,42,0,0.1);
    }

    .social-icon::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,42,0,0.3), transparent);
      transition: left 0.7s ease;
    }

    .social-icon:hover::before {
      left: 100%;
    }

    .social-icon:hover {
      color: #000;
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-10px) scale(1.1);
      box-shadow: 
        0 20px 40px rgba(255,42,0,0.4),
        0 0 60px rgba(255,42,0,0.3),
        inset 0 0 30px rgba(255,255,255,0.2);
    }

    .social-icon:hover i {
      color: #000;
    }

    .social-trap-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(145deg, #000, #111);
      border: 3px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 28px;
      text-decoration: none;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 10px 30px rgba(0,0,0,0.8),
        inset 0 0 20px rgba(255,255,255,0.05);
    }

    .social-trap-icon::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      transition: left 0.7s ease;
    }

    .social-trap-icon:hover::before {
      left: 100%;
    }

    .social-trap-icon:hover {
      color: #000;
      background: #fff;
      border-color: #fff;
      transform: translateY(-10px) scale(1.1);
      box-shadow: 
        0 20px 40px rgba(255,255,255,0.2),
        0 0 60px rgba(255,255,255,0.1),
        inset 0 0 30px rgba(0,0,0,0.2);
    }

    .footer-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin: 50px 0;
    }

    .footer-nav a {
      color: var(--muted);
      text-decoration: none;
      font-family: 'JetBrains Mono', monospace;
      text-transform: uppercase;
      font-size: 16px;
      letter-spacing: 2px;
      font-weight: 600;
      transition: all 0.3s ease;
      padding: 10px 20px;
      position: relative;
    }

    .footer-nav a::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .footer-nav a:hover {
      color: var(--text);
    }

    .footer-nav a:hover::before {
      width: 100%;
    }

    .copyright {
      font-size: 16px;
      color: var(--muted);
      margin-top: 60px;
      font-family: 'JetBrains Mono', monospace;
      border-top: 1px solid rgba(255,42,0,0.2);
      padding-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      letter-spacing: 1px;
    }

    .copyright span {
      color: var(--accent);
      font-weight: 700;
    }

    /* Адаптивен дизайн */
    @media (max-width: 1200px) {
      .hero-title { font-size: clamp(70px, 12vw, 140px); }
      .section-title { font-size: 48px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .modal-container { max-width: 95%; }
    }

    @media (max-width: 992px) {
      .container { padding: 0 20px; }
      .hero-title { font-size: clamp(60px, 10vw, 120px); letter-spacing: 8px; }
      .section-title { font-size: 40px; letter-spacing: 4px; }
      .section-title::before,
      .section-title::after { display: none; }
      .statement { font-size: 22px; padding: 40px 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .map-container { height: 400px; }
      .nav-links, .nav-cta { display: none; }
      .burger { display: flex; }
      
      .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 120px 40px 40px;
        gap: 30px;
        transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 2px solid var(--accent);
        box-shadow: -10px 0 50px rgba(0,0,0,0.5);
      }
      
      .mobile-nav.active {
        right: 0;
      }
      
      .mobile-nav a {
        color: var(--muted);
        text-decoration: none;
        font-family: 'JetBrains Mono', monospace;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 3px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,42,0,0.1);
        transition: all 0.3s ease;
      }
      
      .mobile-nav a:hover {
        color: var(--accent);
        padding-left: 20px;
      }
      
      .mobile-cta {
        margin-top: 30px;
        background: transparent;
        color: var(--accent);
        padding: 20px 30px;
        border: 2px solid var(--accent);
        text-align: center;
        text-decoration: none;
        font-family: 'Orbitron', monospace;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: all 0.4s ease;
      }
      
      .mobile-cta:hover {
        background: var(--accent);
        color: #000;
      }
    }

    @media (max-width: 768px) {
      .hero { min-height: 800px; padding-top: 120px; }
      .hero-title { 
        font-size: 50px; 
        letter-spacing: 5px;
        margin-bottom: 30px;
      }
      .hero-subtitle { 
        font-size: 18px; 
        margin-bottom: 40px;
        letter-spacing: 1px;
      }
      .hero-cta {
        padding: 20px 40px;
        font-size: 20px;
        letter-spacing: 2px;
      }
      .section { padding: 100px 0; }
      .section-title { font-size: 32px; margin-bottom: 60px; }
      .service-card { padding: 40px 30px; min-height: 280px; }
      .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
      .gallery-item { height: 250px; }
      .footer-logo { font-size: 36px; letter-spacing: 4px; }
      .social-icon { width: 70px; height: 70px; font-size: 28px; }
      .modal-social-grid { grid-template-columns: 1fr; }
      .modal-header { padding: 20px; }
      .modal-title { font-size: 24px; }
    }

    @media (max-width: 480px) {
      .hero-title { 
        font-size: 40px; 
        letter-spacing: 3px;
      }
      .hero-subtitle { 
        font-size: 16px; 
      }
      .hero-cta {
        padding: 18px 30px;
        font-size: 18px;
        width: 100%;
      }
      .loading-logo { font-size: 48px; }
      .logo-text { font-size: 24px; }
      .service-card h3 { font-size: 24px; }
      .statement { font-size: 18px; padding: 30px 20px; }
      .testimonial-text { font-size: 18px; }
      .contact-item { font-size: 18px; }
      .footer-nav { gap: 20px; }
      .footer-nav a { font-size: 14px; padding: 8px 15px; }
      .social-icon { width: 60px; height: 60px; font-size: 24px; }
    }

    /* Допълнителни анимации */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger-delay-1 { transition-delay: 0.1s; }
    .stagger-delay-2 { transition-delay: 0.2s; }
    .stagger-delay-3 { transition-delay: 0.3s; }
    .stagger-delay-4 { transition-delay: 0.4s; }
    .stagger-delay-5 { transition-delay: 0.5s; }