:root{
  --bg1:#06130c;
  --bg2:#0b2617;
  --text:#f2fff8;
  --muted:rgba(242,255,248,.78);

  --green:#2bdc77;
  --green2:#1f9f52;

  --panel: rgba(0,0,0,.45);
  --border: rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html,body{height:100%}

/* Hide scrollbar (still scrolls) */
html, body { -ms-overflow-style:none; scrollbar-width:none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width:0; height:0; }

body{
  margin:0;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(43,220,119,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 0%, rgba(60,255,143,.14), transparent 60%),
    radial-gradient(700px 400px at 50% 80%, rgba(34,197,94,.12), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
  overflow-x:hidden;
}


/* Particles canvas */
.particles-canvas{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-1;
  pointer-events:none;
}

/* Navbar */
.navbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 40px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.logo-script{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:26px;
  letter-spacing:.5px;
  text-shadow: 0 0 18px rgba(43,220,119,.22);
}
.logo-sub{
  font-size:12px;
  letter-spacing:3px;
  opacity:.9;
  margin-top:4px;
}

.nav a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-weight:600;
  margin-left:22px;
  transition:.2s ease;
}
.nav a:hover{ color:var(--green) }

.owner-lang{
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  margin-left:22px;
  gap:6px;
}
.owner-lang a{ margin-left:0; }
.lang-select{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#f2fff8;
  border-radius:8px;
  padding:5px 8px;
  font-size:12px;
  font-weight:700;
  outline:none;
}

.navbtn{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:white;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

/* Mobile menu */
.mobilemenu{
  display:none;
  position:fixed;
  top:70px;
  left:0; right:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:14px 40px;
  z-index:99;
}
.mobilemenu a{
  display:block;
  padding:10px 0;
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-weight:600;
}
.mobilemenu a:hover{ color:var(--green) }
.mobilemenu .lang-select{
  margin-top:8px;
  width:100%;
  font-size:13px;
  padding:10px 12px;
}

.yt-player-hidden{
  position:fixed;
  width:0;
  height:0;
  opacity:0;
  pointer-events:none;
  overflow:hidden;
}

/* Hero */
.hero{
  min-height:100vh;
  padding:140px 70px 80px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:32px;
  align-items:center;
}

.hero-left{
  margin-top:-34px;
}

.hero-title{
  font-family:"Playfair Display", serif;
  font-size:48px;
  margin:0 0 10px;
  text-shadow: 0 0 18px rgba(0,0,0,.35);
  line-height:1.05;
}

.hero-sub{
  margin:0 0 26px;
  font-size:20px;
  color:rgba(242,255,248,.85);
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:nowrap;
  justify-content:space-between;
  margin-bottom:28px;
  max-width:380px;
}
.hero-actions .btn{
  flex:1 1 0;
  text-align:center;
  padding:11px 14px;
  font-size:17px;
  font-weight:700;
  border-radius:9px;
}

.hero-services-title{
  font-family:"Playfair Display", serif;
  margin:0 0 14px;
  font-size:30px;
  line-height:1.1;
}

/* Buttons + animations */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:14px;
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
  cursor:pointer;
  user-select:none;
  position:relative;
  overflow:hidden;
}
.btn::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), rgba(255,255,255,0) 55%);
  transform: translateX(-80%) rotate(15deg);
  transition: transform .35s ease;
  pointer-events:none;
}
.btn:hover{ transform: translateY(-3px); }
.btn:hover::after{ transform: translateX(40%) rotate(15deg); }
.btn:active{ transform: translateY(0px) scale(.98); filter: brightness(.98); }

.btn-primary{
  background: linear-gradient(135deg, #2bdc77 0%, #1f9f52 50%, #2bdc77 100%);
  color:white;
  box-shadow: 0 8px 25px rgba(60,255,143,.35);
  border-color: transparent;
}

/* Hero button: transparent background + animated border */
#btnWA.btn-primary{
  background: rgba(0,0,0,.35);
  color: #2bdc77;
  border: 2px solid rgba(43,220,119,.6);
  text-shadow:none;
  box-shadow: 0 4px 15px rgba(43,220,119,.2);
}
#btnWA.btn-primary:hover{
  background: rgba(43,220,119,.2);
  border-color: rgba(43,220,119,.9);
  box-shadow: 0 6px 25px rgba(43,220,119,.4);
}
@keyframes quoteBorderMove{
  0%{ background-position: 0 0, 0% 50%; }
  50%{ background-position: 0 0, 100% 50%; }
  100%{ background-position: 0 0, 0% 50%; }
}
.btn-secondary{
  background: rgba(0,0,0,.35);
  color: #f2fff8;
  border: 2px solid rgba(43,220,119,.45);
}
.btn-secondary:hover{ 
  background: rgba(43,220,119,.15);
  border-color: rgba(43,220,119,.7);
  box-shadow: 0 4px 15px rgba(43,220,119,.2);
}
.btn-full{ width:100% }

.quote-box .btn-primary.btn-full{
  background: rgba(0,0,0,.25);
  color: rgba(242,255,248,.92);
  border-color: rgba(43,220,119,.45);
  box-shadow:none;
}
.quote-box .btn-primary.btn-full:hover{
  background: rgba(43,220,119,.12);
}

/* Service cards */
.service-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 210px));
  gap:10px;
}
.service-card{
  background: rgba(0,0,0,.35);
  border:1px solid rgba(43,220,119,.18);
  border-radius:11px;
  overflow:hidden;
  box-shadow: 0 0 20px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 26px rgba(43,220,119,.14);
}

.imgwrap{ height:108px; overflow:hidden; background: rgba(0,0,0,.25); }
.imgwrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
  transition: transform .4s ease;
}
.service-card:hover .imgwrap img{ transform: scale(1.08); }

.service-card-body{ padding:10px 11px 12px; }
.service-card h3{ margin:0 0 5px; font-size:15px; }
.service-card p{ margin:0; font-size:12px; color:rgba(168,245,205,.92); }

.services-inline{
  margin-top:10px;
}
.services-inline .list{
  margin:8px 0 0;
  max-width:100%;
  font-size:18px;
  line-height:1.85;
}

/* Quote box */
.quote-box{
  background: rgba(0,0,0,.52);
  border:1px solid rgba(43,220,119,.28);
  border-radius:14px;
  padding:22px;
  box-shadow: 0 0 28px rgba(43,220,119,.12);
}
.quote-box.is-hidden{ display:none; }
.quote-box h2{ margin:0 0 14px; font-size:18px; letter-spacing:.2px; }

.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,30,18,.55);
  color:white;
  outline:none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(60,255,143,.55);
  box-shadow: 0 0 0 3px rgba(60,255,143,.12);
}

.mini{
  margin-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
  color:rgba(242,255,248,.82);
  font-size:13px;
}

/* Sections */
.section{ padding:80px 70px; }
.section-dark{
  background: rgba(0,0,0,.20);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-inner{ max-width:980px; margin:0 auto; text-align:center; }
.section h2{ font-family:"Playfair Display", serif; margin:0 0 12px; }
.section p{ margin:0; color:var(--muted); line-height:1.7; }

.list{
  max-width:560px;
  margin:16px auto 0;
  text-align:left;
  color:rgba(242,255,248,.85);
  line-height:1.9;
}


/* Footer */
.footer{
  padding:26px 70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(242,255,248,.75);
}
.footer a{ color:rgba(242,255,248,.9); text-decoration:none; font-weight:800; }
.footer a:hover{ color:var(--green) }

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .navbtn{display:inline-flex}
  .hero{
    grid-template-columns:1fr;
    padding:110px 18px 60px;
    align-items:start;
  }
  .hero-left{ margin-top:-18px; }
  .navbar{padding:16px 18px}
  .mobilemenu{padding:12px 18px}
  .service-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }
  .imgwrap{ height:92px; }
  .service-card h3{ font-size:12px; }
  .service-card p{ font-size:10px; line-height:1.35; }
  .service-card-body{ padding:8px 9px 10px; }
  .section{padding:70px 18px}
  .footer{padding:22px 18px}

  .hero-title{ font-size:36px; }
  .hero-sub{ font-size:18px; margin-bottom:18px; }
  .hero-services-title{ font-size:26px; margin-bottom:12px; }
  .services-inline .list{ line-height:1.75; font-size:16px; }
}
@media (max-width: 420px){
  .hero-title{ font-size:32px; }
  .hero-services-title{ font-size:23px; }
}

/* ===== Modal: Choose WhatsApp or SMS ===== */
#sendModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
#sendModal.open{ display:block; }

.sendmodal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
}
.sendmodal-card{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 28px));
  background: rgba(0,0,0,.78);
  border: 1px solid rgba(60,255,143,.22);
  border-radius: 16px;
  box-shadow: 0 0 38px rgba(60,255,143,.12);
  overflow:hidden;
}
.sendmodal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.sendmodal-title{ font-weight:900; letter-spacing:.2px; }
.sendmodal-x{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:white;
  border-radius:10px;
  padding:6px 10px;
  cursor:pointer;
}
.sendmodal-body{ padding:16px; }
.sendmodal-sub{ color: rgba(242,255,248,.88); margin-bottom:12px; }

.sendmodal-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.sendmodal-btn{
  flex:1;
  min-width:160px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  font-weight:900;
  transition: transform .18s ease, box-shadow .18s ease;
}
.sendmodal-btn:hover{ transform: translateY(-2px); }

.sendmodal-whatsapp{
  background: rgba(0,0,0,.8);
  color:#fff;
  box-shadow: 0 0 18px rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.18);
}
.sendmodal-sms{
  background: rgba(0,0,0,.25);
  color: rgba(242,255,248,.95);
  border-color: rgba(43,220,119,.45);
}

.sendmodal-preview-label{
  font-size:12px;
  opacity:.78;
  margin-bottom:6px;
}
.sendmodal-preview{
  margin:0;
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(10,30,18,.45);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:12px;
  color: rgba(242,255,248,.92);
  max-height: 240px;
  overflow:auto;
}

/* Music toggle in contact box */
.music-box{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  padding:6px 8px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  background: rgba(10,30,18,.45);
}
.music-box span{
  font-size:12px;
  color: rgba(242,255,248,.88);
  font-weight:700;
}
.music-switch{
  min-width:48px;
  border:1px solid rgba(43,220,119,.45);
  background: rgba(0,0,0,.28);
  color:#f2fff8;
  border-radius:8px;
  padding:4px 8px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.music-switch:hover{
  background: rgba(43,220,119,.14);
  border-color: rgba(43,220,119,.6);
}
.music-switch:active{ transform: scale(.97); }

/* Real-time site update alert */
.site-update-prompt{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index:12000;
  display:none;
  width:min(92vw, 420px);
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(43,220,119,.52);
  background: rgba(0,0,0,.82);
  color:#f2fff8;
  font-weight:800;
  text-align:center;
  cursor:pointer;
  box-shadow: 0 0 26px rgba(43,220,119,.28);
}
.site-update-prompt.show{ display:block; }
