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

:root {
  --color-charcoal: #0a0a0f;
  --color-charcoal-light: #1a1a24;
  --color-neon-cyan: #00f5ff;
  --color-neon-fuchsia: #ff00ff;
  --color-neon-orange: #ff6b35;
  --color-metallic: #c0c0c0;
  --color-white: #ffffff;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-400: #9ca3af;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --gradient-primary: linear-gradient(135deg, var(--color-neon-fuchsia) 0%, var(--color-neon-cyan) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-neon-orange) 0%, #ffaa00 100%);
  --gradient-dark: linear-gradient(180deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--color-charcoal);
  color: var(--color-gray-100);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.display-font {
  font-family: 'Unbounded', sans-serif;
}

strong, b, p, span {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-small {
  padding: 60px 0;
}

.section-large {
  padding: 140px 0;
}

.neon-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-border {
  border: 2px solid transparent;
  background: var(--gradient-primary) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.glass-card {
  background: rgba(26, 26, 36, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.brushstroke-title {
  position: relative;
  display: inline-block;
}

.brushstroke-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--gradient-secondary);
  opacity: 0.4;
  filter: blur(8px);
  border-radius: 4px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-white);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 4px;
  border: 2px solid var(--color-neon-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--color-neon-cyan);
  color: var(--color-charcoal);
}

.service-card {
  background: var(--color-charcoal-light);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
  border-color: rgba(0, 245, 255, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  border-radius: 16px;
  margin-bottom: 24px;
  font-size: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card {
  background: linear-gradient(145deg, var(--color-charcoal-light) 0%, rgba(26, 26, 36, 0.8) 100%);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.testimonial-card::quote {
  font-family: 'Georgia', serif;
  font-size: 60px;
  color: var(--color-neon-fuchsia);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-400);
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-neon-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 420px;
  background: var(--color-charcoal-light);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 16px;
  padding: 28px;
  z-index: 9999;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s ease;
}

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

.cookie-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  color: var(--color-neon-cyan);
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 14px;
  color: var(--color-gray-400);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.cookie-accept:hover {
  box-shadow: 0 5px 20px rgba(0, 245, 255, 0.3);
}

.cookie-decline {
  background: transparent;
  color: var(--color-gray-400);
  border: 1px solid var(--color-gray-600);
}

.cookie-decline:hover {
  border-color: var(--color-gray-400);
  color: var(--color-white);
}

.mega-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-gray-400);
  max-width: 600px;
  margin: 0 auto 50px;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .mega-title {
    font-size: 2.5rem;
  }

  .cookie-banner {
    left: 15px;
    right: 15px;
    max-width: none;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #fff 0%, var(--color-gray-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-shadow {
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.spray-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: spray 15s infinite linear;
  pointer-events: none;
}

@keyframes spray {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20%, 20%) rotate(90deg); }
  50% { transform: translate(0, 40%) rotate(180deg); }
  75% { transform: translate(-20%, 20%) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.glow-effect {
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

input, textarea, select {
  background: var(--color-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--color-white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

input::placeholder, textarea::placeholder {
  color: var(--color-gray-600);
}

label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray-400);
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 24px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  header .container {
    position: relative;
    z-index: 10000;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.footer {
  background: var(--color-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--color-gray-400);
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.footer-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-neon-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--color-gray-600);
  font-size: 14px;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.stats-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray-400);
  margin-top: 10px;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 2px solid rgba(0, 245, 255, 0.2);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 9998;
  }

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

  .nav-link {
    font-size: 24px;
  }
}

.price-tag {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-neon-cyan);
}

.price-note {
  font-size: 14px;
  color: var(--color-gray-600);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  color: var(--color-white);
  text-align: left;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-neon-cyan);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  background: var(--color-neon-cyan);
  color: var(--color-charcoal);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding-bottom: 24px;
  color: var(--color-gray-400);
  line-height: 1.8;
}

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

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 4px solid var(--color-neon-fuchsia);
  overflow: hidden;
}

.team-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-neon-cyan);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--color-gray-400);
  line-height: 1.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(0, 245, 255, 0.05) 100%);
  z-index: 1;
}

.content-absolute {
  position: relative;
  z-index: 2;
}

.skill-bar {
  height: 8px;
  background: var(--color-charcoal);
  border-radius: 4px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1.5s ease;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(10, 10, 15, 0.95));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.portfolio-category {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-neon-cyan);
}
