@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

:root {
  --deep-black: #0a0a1a;
  --neon-purple: #a259f7;
  --neon-cyan: #00fff7;
  --blue-glow: #3ec6ff;
  --neon-pink: #ff2ec6;
  --text-main: #e0f7fa;
}

body {
  background: var(--deep-black);
  color: var(--text-main);
  font-family: 'Orbitron', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  z-index: 1;
  position: relative;
}

.header {
  text-align: center;
  padding: 2.5em 1em 1.5em 1em;
  background: linear-gradient(180deg, rgba(10,10,26,0.95) 80%, transparent 100%);
  position: relative;
}
.header-illu {
  width: 60vw;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 0 48px 8px var(--neon-cyan), 0 0 0 4px var(--neon-purple) inset;
  margin-bottom: 1.5em;
}
.neon-title {
  color: #fff;
  text-shadow: 0 0 16px var(--neon-cyan), 0 0 32px var(--neon-purple), 0 2px 12px #3ec6ff, 0 4px 24px #a259f7;
  font-size: 2.7rem;
  letter-spacing: 2px;
  margin: 0.2em 0 0.7em 0;
}
.header-btns {
  margin: 2em 0 0 0;
}
.neon-btn {
  border: 2px solid var(--neon-cyan);
  background: transparent;
  color: var(--neon-cyan);
  padding: 0.8em 2em;
  border-radius: 8px;
  font-size: 1.1rem;
  margin: 0 0.5em;
  box-shadow: 0 0 8px var(--neon-cyan), 0 0 24px var(--neon-purple);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
.neon-btn:hover {
  background: var(--neon-cyan);
  color: var(--deep-black);
  box-shadow: 0 0 24px var(--neon-cyan), 0 0 48px var(--neon-purple);
}

.services {
  padding: 3em 1em 2em 1em;
  text-align: center;
}
.services h2 {
  color: #fff;
  text-shadow: 0 0 16px var(--neon-cyan), 0 0 32px var(--neon-purple), 0 2px 12px #3ec6ff, 0 4px 24px #a259f7;
  font-size: 2rem;
  margin-bottom: 1.5em;
  text-shadow: 0 0 8px var(--neon-cyan);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  justify-items: center;
}
.service-card {
  background: rgba(10,10,26,0.85);
  border: 1.5px solid var(--neon-purple);
  box-shadow: 0 0 24px var(--neon-purple), 0 0 8px var(--neon-cyan) inset;
  border-radius: 18px;
  padding: 2em 1.2em;
  width: 100%;
  max-width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 48px var(--neon-cyan), 0 0 24px var(--neon-purple) inset;
}
.service-card img {
  width: 100%;
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1em;
  display: block;
  margin-left: 0;
  margin-right: 0;
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  border-radius: 12px;
}
.service-card h3 {
  color: var(--neon-cyan);
  text-shadow: 0 0 16px var(--neon-cyan), 0 0 32px var(--neon-purple);
  margin: 0.5em 0 0.3em 0;
  font-size: 1.3rem;
}
.service-card p {
  color: #fff;
  text-shadow: 0 0 12px var(--neon-cyan), 0 0 24px var(--neon-purple), 0 2px 8px #3ec6ff, 0 4px 16px #a259f7;
  font-size: 1.01rem;
  margin: 0.2em 0 0 0;
}

.about {
  padding: 3em 1em 2em 1em;
  text-align: center;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.avatar {
  width: 110px;
  border-radius: 50%;
  box-shadow: 0 0 24px var(--neon-purple), 0 0 8px var(--neon-cyan) inset;
}
.about h2 {
  color: #fff;
  text-shadow: 0 0 16px var(--neon-cyan), 0 0 32px var(--neon-purple), 0 2px 12px #3ec6ff, 0 4px 24px #a259f7;
  font-size: 2rem;
  margin-bottom: 1.5em;
}

.contact {
  padding: 3em 1em 2em 1em;
  text-align: center;
}
.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 24px var(--neon-purple), 0 0 8px var(--neon-cyan) inset;
}
.contact-info {
  min-width: 200px;
}

.footer {
  text-align: center;
  padding: 2em 0 1em 0;
  color: var(--neon-purple);
  background: linear-gradient(0deg, rgba(10,10,26,0.95) 80%, transparent 100%);
  font-size: 1rem;
}
.footer-socials {
  margin-top: 1em;
}
.footer-socials a img {
  width: 32px;
  margin: 0 0.5em;
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  transition: filter 0.2s;
}
.footer-socials a img:hover {
  filter: drop-shadow(0 0 16px var(--neon-purple));
}

.header-logo {
  display: block;
  margin: 0 auto 1.5em auto;
  max-width: 260px;
  width: 44vw;
  filter: drop-shadow(0 0 18px var(--neon-cyan)) drop-shadow(0 0 22px var(--neon-purple));
  border: 2px solid var(--neon-purple);
  border-radius: 24px;
  background: rgba(10,10,26,0.7);
  box-shadow: 0 0 16px 2px var(--neon-purple), 0 0 32px 4px var(--neon-cyan) inset;
  padding: 8px;
  opacity: 0;
  transform: scale(0.85);
  animation: logoAppear 1.2s cubic-bezier(.68,-0.55,.27,1.55) 0.2s forwards;
}
@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: drop-shadow(0 0 0px var(--neon-cyan)) drop-shadow(0 0 0px var(--neon-purple));
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 48px var(--neon-cyan)) drop-shadow(0 0 64px var(--neon-purple));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 24px var(--neon-cyan)) drop-shadow(0 0 32px var(--neon-purple));
  }
}

.contact-info-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.2em;
}
.contact-address {
  font-size: 0.98rem;
  color: var(--neon-cyan);
  margin-bottom: 0.7em;
  text-align: center;
  text-shadow: 0 0 8px var(--neon-purple);
}
.neon-btn-small {
  font-size: 0.95rem;
  padding: 0.5em 1.3em;
  border-width: 1.5px;
  box-shadow: 0 0 6px var(--neon-cyan), 0 0 12px var(--neon-purple);
}

.footer-link {
  color: var(--neon-cyan);
  text-decoration: underline;
  margin-top: 1em;
  display: inline-block;
  font-size: 0.98rem;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--neon-purple);
}

.modal-cgv {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,10,26,0.92);
  backdrop-filter: blur(2px);
}
.modal-cgv-content {
  background: #18182a;
  margin: 5vh auto;
  padding: 2em 1.5em 1.5em 1.5em;
  border: 2px solid var(--neon-purple);
  border-radius: 18px;
  max-width: 700px;
  color: var(--text-main);
  box-shadow: 0 0 32px var(--neon-cyan), 0 0 64px var(--neon-purple) inset;
  position: relative;
  animation: modalIn 0.3s;
}
@keyframes modalIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.close-cgv {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: var(--neon-cyan);
  cursor: pointer;
  transition: color 0.2s;
}
.close-cgv:hover {
  color: var(--neon-pink);
}
.cgv-text {
  max-height: 60vh;
  overflow-y: auto;
  margin-top: 1.2em;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-main);
}

.modal-contact {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,10,26,0.92);
  backdrop-filter: blur(2px);
}
.modal-contact-content {
  background: #18182a;
  margin: 5vh auto;
  padding: 2em 1.5em 1.5em 1.5em;
  border: 2px solid var(--neon-cyan);
  border-radius: 18px;
  max-width: 420px;
  color: var(--text-main);
  box-shadow: 0 0 32px var(--neon-cyan), 0 0 64px var(--neon-purple) inset;
  position: relative;
  animation: modalIn 0.3s;
}
.close-contact {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: var(--neon-cyan);
  cursor: pointer;
  transition: color 0.2s;
}
.close-contact:hover {
  color: var(--neon-pink);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}
.contact-form label {
  color: var(--neon-cyan);
  font-size: 1rem;
  margin-bottom: 0.2em;
}
.contact-form input,
.contact-form textarea {
  background: #0a0a1a;
  border: 1.5px solid var(--neon-purple);
  color: var(--text-main);
  border-radius: 8px;
  padding: 0.7em 1em;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 0 8px var(--neon-cyan) inset;
  resize: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--neon-cyan);
  box-shadow: 0 0 16px var(--neon-cyan);
}
.contact-success {
  color: var(--neon-cyan);
  margin-top: 1em;
  text-align: center;
  font-size: 1.05em;
  min-height: 1.5em;
}

.modal-service {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,10,26,0.92);
  backdrop-filter: blur(2px);
}
.modal-service-content {
  background: #18182a;
  margin: 8vh auto;
  padding: 2em 1.5em 1.5em 1.5em;
  border: 2px solid var(--neon-purple);
  border-radius: 18px;
  max-width: 420px;
  color: var(--text-main);
  box-shadow: 0 0 32px var(--neon-cyan), 0 0 64px var(--neon-purple) inset;
  position: relative;
  animation: modalIn 0.3s;
}
.close-modal-service {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: var(--neon-purple);
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal-service:hover {
  color: var(--neon-cyan);
}
.modal-list {
  margin: 1.2em 0 0 0;
  padding-left: 1.2em;
  color: var(--neon-cyan);
  font-size: 1.05em;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 800px) {
  .header-illu { width: 90vw; }
  .about-content, .contact-content { flex-direction: column; gap: 1em; }
  .services-grid { grid-template-columns: 1fr; }
}

.background-circuit {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.18;
  background: url('data:image/svg+xml;utf8,<svg width="1000" height="1000" viewBox="0 0 1000 1000" fill="none" xmlns="http://www.w3.org/2000/svg"><g stroke="%23a259f7" stroke-width="1.5"><path d="M100 100h800v800H100z"/><path d="M200 200h600v600H200z"/><path d="M300 300h400v400H300z"/><path d="M400 400h200v200H400z"/><circle cx="500" cy="500" r="80"/></g></svg>');
  background-size: 900px 900px;
  background-repeat: repeat;
  animation: moveCircuit 24s linear infinite;
  filter: drop-shadow(0 0 24px var(--neon-purple)) drop-shadow(0 0 32px var(--neon-cyan));
}
@keyframes moveCircuit {
  0% { background-position: 0 0; }
  100% { background-position: 120px 80px; }
}

.modal-avatar {
  display: none;
  position: fixed;
  z-index: 1003;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,10,26,0.92);
  backdrop-filter: blur(2px);
}
.modal-avatar-content {
  background: #18182a;
  margin: 7vh auto;
  padding: 2em 1.5em 1.5em 1.5em;
  border: 2px solid var(--neon-cyan);
  border-radius: 18px;
  max-width: 480px;
  color: var(--text-main);
  box-shadow: 0 0 32px var(--neon-cyan), 0 0 64px var(--neon-purple) inset;
  position: relative;
  animation: modalIn 0.3s;
  text-align: center;
}
.close-modal-avatar {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: var(--neon-cyan);
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal-avatar:hover {
  color: var(--neon-pink);
}
.avatar-large {
  width: 140px;
  border-radius: 50%;
  box-shadow: 0 0 32px var(--neon-purple), 0 0 16px var(--neon-cyan) inset;
  margin-bottom: 1.2em;
}
.avatar-title {
  color: #fff;
  text-shadow: 0 0 12px var(--neon-cyan), 0 0 24px var(--neon-purple);
  font-size: 1.4rem;
  margin-bottom: 0.7em;
}
.avatar-bio {
  color: var(--text-main);
  font-size: 1.05rem;
  text-align: left;
  margin: 0 auto;
  max-width: 370px;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .modal-avatar-content { max-width: 98vw; padding: 1.2em 0.5em; }
  .avatar-large { width: 90px; }
  .avatar-bio { font-size: 0.98rem; }
}

.contact h2 {
  color: #fff;
  text-shadow: 0 0 16px var(--neon-cyan), 0 0 32px var(--neon-purple), 0 2px 12px #3ec6ff, 0 4px 24px #a259f7;
  font-size: 2rem;
  margin-bottom: 1.5em;
}

.modal-cgv-ae {
  display: none;
  position: fixed;
  z-index: 1004;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(10,10,26,0.92);
  backdrop-filter: blur(2px);
}
.modal-cgv-ae-content {
  background: #18182a;
  margin: 5vh auto;
  padding: 2em 1.5em 1.5em 1.5em;
  border: 2px solid var(--neon-purple);
  border-radius: 18px;
  max-width: 700px;
  color: var(--text-main);
  box-shadow: 0 0 32px var(--neon-cyan), 0 0 64px var(--neon-purple) inset;
  position: relative;
  animation: modalIn 0.3s;
}
.close-cgv-ae {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: var(--neon-cyan);
  cursor: pointer;
  transition: color 0.2s;
}
.close-cgv-ae:hover {
  color: var(--neon-pink);
}
.cgv-ae-text {
  max-height: 60vh;
  overflow-y: auto;
  margin-top: 1.2em;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-main);
}
.cgv-ae-text h4 {
    color: var(--neon-cyan);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    text-shadow: 0 0 8px var(--neon-cyan);
} 