:root{
  --green:#9cff00;
  --green-soft:#b7ff47;
  --black:#050505;
  --black-2:#0b0f12;
  --panel:#10161b;
  --panel-2:#141d23;
  --text:#f5f7fa;
  --muted:#9aa6b2;
  --line:rgba(255,255,255,.08);
  --glass:rgba(255,255,255,.05);
  --shadow:0 25px 80px rgba(0,0,0,.35);
  --radius:24px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(156,255,0,.08), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04), transparent 18%),
    linear-gradient(180deg, #040506 0%, #0a0d10 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

.section-block{
  padding:110px 0;
  position:relative;
  z-index:2;
}

.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
  border-top:1px solid rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.03);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:1.8px;
  font-weight:800;
  color:var(--green);
  margin-bottom:18px;
}

.section-head{
  max-width:900px;
  margin:0 auto 10px;
}

.section-head h2{
  font-size:clamp(2rem, 4vw, 3.6rem);
  font-weight:800;
  line-height:1.1;
  margin-bottom:16px;
}

.section-head p{
  color:var(--muted);
  font-size:1.05rem;
}

.glass-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-radius:28px;
}

/* Cursor glow */
.cursor-glow{
  position:fixed;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(156,255,0,.12) 0%, rgba(156,255,0,0) 70%);
  pointer-events:none;
  transform:translate(-50%, -50%);
  z-index:0;
  filter:blur(20px);
}

/* Navbar */
.nolia-navbar{
  padding:18px 0;
  transition:.35s ease;
  background:transparent;
}

.nolia-navbar.scrolled{
  background:rgba(5,5,5,.72);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 40px rgba(0,0,0,.28);
}

.navbar-brand{
  color:#fff;
  font-size:1.7rem;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 16px var(--green);
}

.nav-link{
  color:rgba(255,255,255,.8);
  font-weight:600;
  position:relative;
  transition:.3s ease;
}

.nav-link:hover,
.nav-link.active{
  color:var(--green) !important;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--green);
  transition:.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

/* Buttons */
.btn-neon{
  background:var(--green);
  color:#081008;
  border:none;
  font-weight:800;
  padding:15px 28px;
  border-radius:60px;
  box-shadow:0 0 0 1px rgba(156,255,0,.2), 0 15px 40px rgba(156,255,0,.25);
  transition:.35s ease;
}

.btn-neon:hover{
  transform:translateY(-3px);
  background:var(--green-soft);
  color:#081008;
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:15px 28px;
  border-radius:60px;
  font-weight:700;
  background:rgba(255,255,255,.04);
  transition:.35s ease;
}

.btn-ghost:hover{
  border-color:rgba(156,255,0,.4);
  color:var(--green);
}

/* Hero */
.contact-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding-top:100px;
}

.hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:50px 50px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.35));
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(25px);
  animation:float 8s ease-in-out infinite;
}

.orb-1{
  width:260px;
  height:260px;
  background:rgba(156,255,0,.14);
  top:12%;
  left:-60px;
}

.orb-2{
  width:180px;
  height:180px;
  background:rgba(255,255,255,.08);
  right:10%;
  top:18%;
  animation-delay:1s;
}

.orb-3{
  width:220px;
  height:220px;
  background:rgba(156,255,0,.09);
  right:18%;
  bottom:10%;
  animation-delay:2s;
}

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(20px); }
}

.contact-hero h1{
  font-size:clamp(2.8rem, 6vw, 5.4rem);
  line-height:1;
  font-weight:800;
  margin-bottom:24px;
  letter-spacing:-2px;
}

.contact-hero h1 span{
  color:var(--green);
  text-shadow:0 0 22px rgba(156,255,0,.25);
}

.contact-hero p{
  font-size:1.08rem;
  color:#b7c0c9;
  max-width:640px;
  line-height:1.8;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.hero-points div{
  display:flex;
  align-items:center;
  gap:10px;
  color:#dfe6eb;
  font-weight:600;
}

.hero-points i{
  color:var(--green);
}

.hero-card{
  overflow:hidden;
}

.hero-card-image{
  height:260px;
  overflow:hidden;
}

.hero-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-card-body{
  padding:28px;
}

.mini-tag{
  display:inline-block;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1.2px;
  color:var(--green);
  font-weight:800;
  margin-bottom:14px;
}

.hero-card-body h3{
  font-size:1.6rem;
  font-weight:800;
  margin-bottom:14px;
}

.hero-card-body p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

/* Info card */
.info-card{
  padding:34px;
}

.info-card h2{
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800;
  margin-bottom:14px;
}

.info-card p{
  color:var(--muted);
  line-height:1.8;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-top:22px;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.contact-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--green), #d7ff93);
  color:#081008;
  font-size:1.2rem;
  flex-shrink:0;
}

.contact-item strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
}

.contact-item p{
  margin:0;
  color:#d2d9df;
}

.social-list{
  display:flex;
  gap:12px;
  margin-top:26px;
}

.social-list a{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:rgba(255,255,255,.06);
  transition:.35s ease;
}

.social-list a:hover{
  background:var(--green);
  color:#081008;
  transform:translateY(-3px);
}

/* Form */
.form-card{
  padding:34px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}

.form-head{
  margin-bottom:24px;
}

.form-head h2{
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800;
  margin-bottom:12px;
}

.form-head p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

.form-control{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  min-height:56px;
  color:#fff;
  padding:14px 18px;
}

textarea.form-control{
  min-height:auto;
}

.form-select{
  background-color:rgba(255,255,255,.04);
}

.form-control:focus,
.form-select:focus{
  background:rgba(255,255,255,.06);
  border-color:rgba(156,255,0,.35);
  box-shadow:0 0 0 .2rem rgba(156,255,0,.1);
  color:#fff;
}

.form-control::placeholder{
  color:#96a3ae;
}

/* Image block */
.image-block{
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  height:100%;
  min-height:420px;
}

.image-block img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.side-note-card{
  height:100%;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}

.side-note-card h3{
  font-size:2rem;
  font-weight:800;
  margin-bottom:14px;
}

.side-note-card p{
  color:var(--muted);
  line-height:1.8;
  margin-bottom:24px;
}

.note-list{
  display:grid;
  gap:14px;
}

.note-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.note-item i{
  color:var(--green);
}

.note-item span{
  color:#e8edf1;
  font-weight:600;
}

/* FAQ */
.faq-wrap{
  max-width:950px;
  margin:0 auto;
}

.custom-accordion .accordion-item{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  overflow:hidden;
  margin-bottom:16px;
}

.custom-accordion .accordion-button{
  background:transparent;
  color:#fff;
  font-weight:700;
  box-shadow:none;
  padding:22px 24px;
}

.custom-accordion .accordion-button:not(.collapsed){
  background:rgba(156,255,0,.06);
  color:var(--green);
}

.custom-accordion .accordion-button::after{
  filter:invert(1);
}

.custom-accordion .accordion-body{
  color:var(--muted);
  line-height:1.8;
  padding:0 24px 24px;
}

/* CTA */
.cta-box{
  padding:42px;
  border-radius:30px;
  background:
    radial-gradient(circle at left top, rgba(156,255,0,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.cta-box h2{
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800;
  margin-bottom:14px;
}

.cta-box p{
  color:var(--muted);
  margin-bottom:0;
  line-height:1.8;
}

/* Footer */
.footer-nolia{
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background:#050607;
}

.footer-nolia p{
  margin:0;
  text-align:center;
  color:#8c98a3;
}

/* Back to top */
#backToTop{
  position:fixed;
  right:18px;
  bottom:18px;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:var(--green);
  color:#081008;
  font-size:1.2rem;
  box-shadow:0 15px 30px rgba(156,255,0,.2);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:.35s ease;
  z-index:30;
}

#backToTop.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Responsive */
@media (max-width: 991.98px){
  .section-block{
    padding:90px 0;
  }

  .contact-hero{
    padding-top:110px;
  }

  .hero-card{
    margin-top:40px;
  }
}

@media (max-width: 767.98px){
  .contact-hero h1{
    letter-spacing:-1px;
  }

  .hero-points{
    gap:14px;
    flex-direction:column;
    align-items:flex-start;
  }

  .info-card,
  .form-card,
  .side-note-card,
  .cta-box{
    padding:26px;
  }

  .image-block{
    min-height:320px;
  }
}

@media (max-width: 575.98px){
  .hero-actions{
    flex-direction:column;
  }

  .btn-neon,
  .btn-ghost{
    width:100%;
    text-align:center;
  }

  .cursor-glow{
    display:none;
  }
}