:root{
  --bg0:#050a14;
  --bg1:#071225;
  --panel: rgba(255,255,255,.055);
  --panel2: rgba(255,255,255,.075);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(130,190,255,.20);
  --text: #eef6ff;
  --muted: rgba(238,246,255,.78);
  --muted2: rgba(238,246,255,.62);
  --blue: #4aa3ff;
  --blue2:#1b67ff;
  --shadow: 0 30px 120px rgba(0,0,0,.55);
  --r: 22px;
  --r2: 30px;
  --max: 1080px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 650px at 20% -5%, rgba(74,163,255,.22), transparent 60%),
    radial-gradient(900px 650px at 90% 10%, rgba(27,103,255,.16), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 20px}
.sr{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

/* --- curved navbar (desktop) --- */
.top{
  position:sticky;top:0;z-index:40;
  padding:14px 0 10px;
  pointer-events:none; /* allow curve shadow without blocking */
}
.top .wrap{pointer-events:auto}
.navShell{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 14px;
  border-radius:999px;
  backdrop-filter: blur(14px);
  background: rgba(5,10,20,.58);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}
.brand{display:flex;align-items:center;gap:10px;font-weight:900;letter-spacing:.8px;min-width:220px}
.brand img{width:34px;height:34px;border-radius:12px;border:1px solid rgba(130,190,255,.22);box-shadow:0 18px 60px rgba(74,163,255,.18)}
.brand small{display:block;font-weight:800;opacity:.68;letter-spacing:.2px;font-size:12px}
.nav{display:flex;align-items:center;gap:12px;flex-wrap:wrap;justify-content:center}
.nav > a,
.dd > button{
  font-weight:900;font-size:13px;opacity:.88;
  padding:10px 12px;border-radius:999px;
  border:1px solid transparent;
  background: transparent;
  color:inherit;
  cursor:pointer;
}
.nav > a:hover,
.dd > button:hover{opacity:1;border-color:rgba(255,255,255,.10);background:rgba(255,255,255,.03)}
.nav .active{opacity:1;background:rgba(74,163,255,.10);border-color:rgba(130,190,255,.18)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:40px;padding:0 16px;border-radius:999px;
  border:1px solid rgba(130,190,255,.22);
  background: linear-gradient(135deg, rgba(74,163,255,.22), rgba(27,103,255,.08));
  font-weight:900;font-size:13px;
  box-shadow: 0 18px 70px rgba(0,0,0,.25);
  cursor:pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px);border-color:rgba(74,163,255,.35)}
.btn:active{transform:translateY(0)}
.btn.ghost{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.10);box-shadow:none}

.dd{position:relative}
.ddMenu{
  position:absolute;left:0;top:calc(100% + 10px);
  min-width:240px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(8,18,37,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 120px rgba(0,0,0,.55);
  padding:10px;
  display:none;
}
.ddMenu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:900;
  opacity:.9;
}
.ddMenu a:hover{opacity:1;border-color:rgba(255,255,255,.10);background:rgba(255,255,255,.04)}
.dd.open .ddMenu{display:block}

/* --- hero --- */
.hero{padding:52px 0 22px;text-align:center}
.kicker{
  display:inline-flex;gap:10px;align-items:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(130,190,255,.18);
  background: rgba(255,255,255,.04);
  color:rgba(238,246,255,.90);
  font-weight:900;font-size:12px;
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--blue);box-shadow:0 0 0 6px rgba(74,163,255,.12)}
h1{
  margin:14px auto 10px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:19ch;
}
.grad{
  background:linear-gradient(90deg, rgba(74,163,255,1), rgba(27,103,255,.96));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.lead{margin:0 auto;color:var(--muted);max-width:72ch;font-weight:650}
.cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:20px}
.divider{
  margin:34px auto 0;
  width:min(920px, 100%);
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(130,190,255,.22), transparent);
}
.heroGrid{
  margin-top:18px;
  display:grid;gap:14px;
  grid-template-columns: 1.08fr .92fr;
  align-items:stretch;
}
.card{
  background: var(--panel);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.heroCard{padding:18px;text-align:left}
.heroCard h3{margin:0 0 8px;font-size:16px}
.heroCard p{margin:0;color:var(--muted);font-weight:650}
.heroImg{
  padding:14px;
  display:grid;gap:10px;
}
.heroImg img{
  width:100%;height:100%;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  object-fit:cover;
  min-height:260px;
}
.heroImg .cap{color:var(--muted2);font-weight:800;font-size:12px;padding:0 4px}

/* --- sections --- */
section{padding:46px 0}
.sectionHead{display:flex;justify-content:space-between;align-items:flex-end;gap:18px;flex-wrap:wrap;margin-bottom:16px}
.sectionHead h2{margin:0;font-size:26px;letter-spacing:-.01em}
.sectionHead p{margin:0;color:var(--muted);max-width:74ch;font-weight:650}
.grid{
  display:grid;gap:14px;
  grid-template-columns: repeat(4, 1fr);
}
.platform{
  padding:18px 16px;display:flex;gap:12px;align-items:center;justify-content:flex-start;
}
.icon{
  width:44px;height:44px;border-radius:18px;
  border:1px solid rgba(130,190,255,.18);
  background: rgba(74,163,255,.10);
  display:grid;place-items:center;
  flex:0 0 auto;
}
.platform b{display:block;font-size:13px}
.platform span{display:block;color:var(--muted);font-weight:650;font-size:12px;margin-top:2px}

.cards3{
  display:grid;gap:14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top:14px;
}
.cards3 .card{padding:18px}
.cards3 h3{margin:0 0 6px;font-size:16px}
.cards3 p{margin:0;color:var(--muted);font-weight:650}

/* --- team grid --- */
.teamGrid{
  display:grid;gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.team{
  overflow:hidden;
}
.team img{width:100%;height:200px;object-fit:cover;display:block;border-bottom:1px solid rgba(255,255,255,.08)}
.team .body{padding:14px 14px 16px}
.team .role{color:rgba(238,246,255,.62);font-weight:900;font-size:12px;margin-top:2px}
.tagRow{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.tag{
  font-size:12px;font-weight:900;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:rgba(238,246,255,.88);
}

/* --- FAQ --- */
.faq{display:grid;gap:10px;margin-top:10px}
.q{
  width:100%;
  text-align:left;
  padding:16px 16px;border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  cursor:pointer;
  font-weight:950;
}
.q i{
  width:28px;height:28px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  position:relative;flex:0 0 auto;
}
.q i:before,.q i:after{
  content:"";position:absolute;left:50%;top:50%;
  width:12px;height:2px;background:rgba(238,246,255,.82);
  transform:translate(-50%,-50%);border-radius:99px;
}
.q i:after{transform:translate(-50%,-50%) rotate(90deg);transition:.18s ease}
.q.open i:after{opacity:0}
.a{
  display:none;
  padding:14px 16px;border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(5,10,20,.35);
  color:var(--muted);
  font-weight:650;
}
.q.open + .a{display:block}

/* --- form --- */
.formCard{padding:18px}
form{display:grid;gap:12px}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
label span{display:block;font-weight:950;font-size:12px;color:rgba(238,246,255,.84);margin:0 0 6px}
input,select,textarea{
  width:100%;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:12px 12px;
  color:var(--text);
  font-weight:750;
  outline:none;
}
textarea{resize:vertical}
input:focus,select:focus,textarea:focus{border-color:rgba(74,163,255,.42);box-shadow:0 0 0 4px rgba(74,163,255,.12)}
.err{min-height:14px;color:rgba(255,180,180,.92);font-size:12px;font-weight:900}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:4px}
.note{margin:0;color:rgba(238,246,255,.60);font-weight:750;font-size:12px}

/* footer */
footer{
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(5,10,20,.35);
}
.foot{padding:22px 0;display:flex;justify-content:space-between;gap:16px;align-items:flex-start;flex-wrap:wrap}
.foot a{opacity:.78;font-weight:900;font-size:13px}
.foot a:hover{opacity:1}
.copy{padding:0 0 22px;color:rgba(238,246,255,.54);font-weight:800;font-size:12px}

/* mobile bottom nav */
.bottomNav{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:12px;z-index:50;
  width:min(560px, calc(100vw - 24px));
  padding:10px 10px;
  border-radius:22px;
  background: rgba(8,18,37,.78);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 120px rgba(0,0,0,.55);
  display:none; /* shown on mobile */
}
.bottomNav .row{
  display:grid;grid-template-columns: repeat(5, 1fr);gap:8px;
}
.bItem{
  display:grid;place-items:center;
  padding:10px 8px;border-radius:18px;
  border:1px solid transparent;
  color:rgba(238,246,255,.82);
  font-weight:950;font-size:10px;
}
.bItem svg{opacity:.95}
.bItem.active{background: rgba(74,163,255,.12);border-color: rgba(130,190,255,.18);color:rgba(238,246,255,.96)}
.bItem:hover{border-color: rgba(255,255,255,.10);background: rgba(255,255,255,.04)}

/* responsive */
@media (max-width: 980px){
  h1{font-size:48px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .cards3{grid-template-columns:1fr}
  .teamGrid{grid-template-columns:1fr}
  .heroGrid{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav{display:none}
  .bottomNav{display:block}
  body{padding-bottom:92px} /* space for bottom nav */
}
:root{
  --bg0:#050912;
  --bg1:#081225;
  --stroke: rgba(255,255,255,.10);
  --text: #EAF2FF;
  --muted: rgba(220,235,255,.72);
  --a1:#00BFFF;
  --a2:#2B6CFF;
  --a3:#7A5CFF;
  --shadow: 0 30px 90px rgba(0,0,0,.55);
  --r: 20px;
}

body{
  color:var(--text);
  background:
    radial-gradient(900px 450px at 15% 0%, rgba(0,191,255,.18), transparent 60%),
    radial-gradient(900px 450px at 90% 0%, rgba(122,92,255,.14), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

.hero{padding:46px 0 10px}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12px;letter-spacing:.5px;text-transform:uppercase;
  color:rgba(220,235,255,.78);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:8px 12px;
}
.dot{
  width:8px;height:8px;border-radius:999px;
  background:rgba(0,191,255,.95);
  box-shadow:0 0 18px rgba(0,191,255,.65);
  animation:dotPulse 1.2s ease-in-out infinite;
}
@keyframes dotPulse{
  0%,100%{transform:scale(1);opacity:.75}
  50%{transform:scale(1.55);opacity:1}
}
.grad{
  background:linear-gradient(135deg,var(--a1),var(--a2),var(--a3));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.lead{color:var(--muted)}
.divider{
  height:1px;margin-top:22px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
}

.sectionHead h2{margin:0 0 6px}
.sectionHead p{margin:0;color:var(--muted)}

.card{
  margin-top:18px;
  border-radius:var(--r);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(10,16,30,.55), rgba(10,16,30,.35));
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.formCard{padding:18px}
.formCard::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 220px at 18% -10%, rgba(0,191,255,.18), transparent 60%),
    radial-gradient(700px 220px at 92% 0%, rgba(122,92,255,.14), transparent 60%);
  pointer-events:none;
}

#form{position:relative;display:flex;flex-direction:column;gap:14px}

.row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width:860px){
  .row2{grid-template-columns:1fr}
}

label{display:flex;flex-direction:column;gap:8px}
label > span{
  font-size:13px;
  color:rgba(234,242,255,.92);
  letter-spacing:.3px;
}

input, select, textarea{
  width:100%;
  color:var(--text);
  background:rgba(8,12,22,.55);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:12px 12px;
  outline:none;
  transition:.18s ease;
  box-shadow:0 10px 40px rgba(0,0,0,.25) inset;
}
select{appearance:none}
input::placeholder, textarea::placeholder{color:rgba(220,235,255,.45)}
input:focus, select:focus, textarea:focus{
  border-color:rgba(0,191,255,.55);
  box-shadow:0 0 0 4px rgba(0,191,255,.12), 0 0 28px rgba(0,191,255,.16);
  background:rgba(10,14,26,.70);
}
textarea{resize:vertical;min-height:140px}

.err{
  min-height:14px;
  font-size:12px;
  color:rgba(255,120,120,.95);
}

.actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:4px;
}

.btn{
  border:0;
  cursor:pointer;
  border-radius:14px;
  padding:12px 18px;
  font-weight:800;
  letter-spacing:.3px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
  position:relative;
  overflow:hidden;
  user-select:none;
}

.btnPrimary{
  color:#fff;
  background:linear-gradient(135deg,var(--a1),var(--a2));
  box-shadow:0 14px 40px rgba(0,120,255,.35), 0 0 0 1px rgba(255,255,255,.12) inset;
}
.btnPrimary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 60px rgba(0,150,255,.45), 0 0 0 1px rgba(255,255,255,.14) inset;
  filter:saturate(1.1);
}
.btnPrimary:active{transform:translateY(0) scale(.99)}
.shine{
  position:absolute;
  top:-40%; left:-30%;
  width:40%; height:180%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform:rotate(18deg);
  animation:shineMove 2.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shineMove{
  0%,55%{left:-35%;opacity:0}
  65%{opacity:1}
  100%{left:120%;opacity:0}
}

.btnGhost{
  background:rgba(8,12,22,.35);
  color:rgba(234,242,255,.92);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 14px 40px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.btnGhost:hover{
  transform:translateY(-2px);
  background:rgba(8,12,22,.55);
  box-shadow:0 18px 55px rgba(0,0,0,.35), 0 0 0 1px rgba(0,191,255,.18) inset;
}
.btnGhost:active{transform:translateY(0) scale(.99)}
.btnGhost::after{
  content:"";
  position:absolute;
  top:-40%; left:-30%;
  width:35%; height:180%;
  background:linear-gradient(90deg, transparent, rgba(0,191,255,.22), transparent);
  transform:rotate(18deg);
  animation:ghostShine 3.2s ease-in-out infinite;
  pointer-events:none;
  opacity:.9;
}
@keyframes ghostShine{
  0%,60%{left:-35%;opacity:0}
  70%{opacity:1}
  100%{left:120%;opacity:0}
}

.pulseDot{
  display:inline-block;
  width:8px;height:8px;border-radius:999px;
  margin-left:10px;
  background:rgba(0,191,255,.9);
  box-shadow:0 0 18px rgba(0,191,255,.65);
  animation:dotPulse 1.2s ease-in-out infinite;
  vertical-align:middle;
}

.isRunning{pointer-events:none;opacity:.88;filter:saturate(1.1)}
/* === VOXZ CLEAN FOOTER === */

.vxFoot{
  padding:70px 20px 40px;
  text-align:center;
}

.vxFoot__inner{
  max-width:900px;
  margin:auto;
}

/* Logo text */
.vxFoot__logoText{
  font-size:32px;
  letter-spacing:3px;
  margin:0;
  color:#4fd1ff;

  text-shadow:
    0 0 10px rgba(79,209,255,.6),
    0 0 30px rgba(79,209,255,.25);
}

/* tagline */
.vxFoot__tag{
  color:rgba(230,240,255,.65);
  margin:10px 0 28px;
  font-size:14px;
}

/* titles */
.vxFoot__title{
  margin-top:22px;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  color:#8ed7ff;
}

/* links */
.vxFoot__links{
  margin-top:10px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:22px;
}

.vxFoot__links a{
  color:rgba(230,240,255,.75);
  font-size:14px;
  transition:.2s;
}

.vxFoot__links a:hover{
  color:#6fd8ff;
  text-shadow:0 0 10px rgba(111,216,255,.4);
}

/* socials */
.vxFoot__social{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:18px;
}

.vxFoot__social a{
  color:rgba(230,240,255,.7);
  font-size:18px;
  transition:.25s;
}

.vxFoot__social a:hover{
  color:#6fd8ff;
  transform:translateY(-3px);
  text-shadow:0 0 12px rgba(111,216,255,.6);
}

/* copy */
.vxFoot__copy{
  margin-top:30px;
  font-size:13px;
  color:rgba(230,240,255,.55);
  line-height:1.7;
}

.vxFoot__copy span{
  color:#6fd8ff;
}
.teamLink{
  display:block; /* a etiketi kart gibi dursun */
  color:inherit;
}

.teamName{
  font-weight:950;
}

.teamLink:hover{
  transform: translateY(-2px);
  border-color: rgba(74,163,255,.25);
}

.teamLink{
  transition: transform .18s ease, border-color .2s ease, background .2s ease;
}
.teamSocial{
  margin-top:12px;
  display:flex;
  gap:16px;
}

.teamSocial a{
  font-size:18px;
  color:rgba(230,240,255,.75);
  transition:.2s ease;
}

.teamSocial a:hover{
  color:#4aa3ff;
  transform:translateY(-2px);
  text-shadow:0 0 12px rgba(74,163,255,.6);
}

/* Kick özel ama soft */
.teamSocial a.kick:hover{
  color:#53fc18;
  text-shadow:0 0 12px rgba(83,252,24,.6);
}
.aboutCard{
  padding:22px;
}

.aboutText p{
  margin:0 0 14px;
  color: var(--muted);
  font-weight:650;
  line-height:1.9;
  font-size:15px;
}

.aboutText b{
  color: rgba(238,246,255,.95);
  font-weight:900;
}

.aboutStrong{
  margin-top:6px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.aboutCTA{
  margin-top:10px;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(130,190,255,.18);
  background: rgba(74,163,255,.08);
  color: rgba(238,246,255,.86);
}
.missionCard{
  padding:22px;
}

.missionText p{
  margin:0 0 16px;
  color:var(--muted);
  font-weight:650;
  line-height:1.9;
  font-size:15px;
}

.missionText b{
  color:rgba(238,246,255,.95);
  font-weight:900;
}

.missionStrong{
  margin-top:8px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:16px;
}
.visionCard{
  padding:22px;
}

.visionText p{
  margin:0 0 16px;
  color:var(--muted);
  font-weight:650;
  line-height:1.9;
  font-size:15px;
}

.visionText b{
  color:rgba(238,246,255,.95);
  font-weight:900;
}

.visionStrong{
  margin-top:8px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:16px;
}
/* Premium polish */
.hero h1{max-width:22ch}
.hero .lead{line-height:1.85;font-size:16px}
.kicker{letter-spacing:.4px}
.heroCard h3{letter-spacing:-.01em}
.heroImg .cap b{color:rgba(238,246,255,.95)}

.platform.card, .cards3 .card, .heroCard, .heroImg{
  transition: transform .18s ease, border-color .2s ease, background .2s ease;
}
.platform.card:hover, .cards3 .card:hover, .heroCard:hover, .heroImg:hover{
  transform: translateY(-2px);
  border-color: rgba(74,163,255,.22);
}
.form-note{
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 14px;

  background: linear-gradient(
    180deg,
    rgba(255,170,0,.10),
    rgba(255,170,0,.04)
  );

  border: 1px solid rgba(255,170,0,.25);

  color: rgba(255,220,150,.95);
  font-size: 13.5px;
  line-height: 1.6;

  backdrop-filter: blur(6px);
}
.contactRow{
  margin-top:18px;
  text-align:center;
  font-size:14px;
  opacity:.9;
  line-height:1.4;
  white-space:nowrap;
}

.contactRow a{
  color:#fff;
  text-decoration:none;
  margin:0 6px;
  transition:.2s;
}

.contactRow i{
  color:#00AFFF;
  margin-right:6px;
}

.contactRow a:hover{ color:#00AFFF; }
.sep{ opacity:.35; margin:0 6px; }

/* HARİTA: büyük, ortalı, kavisli */
.mapWrap{
  margin-top:14px !important;
  width:100% !important;
  max-width: 920px;      /* istersen 1000 yap */
  margin-left:auto !important;
  margin-right:auto !important;

  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
}

.mapFrame{
  display:block !important;
  width:100% !important;
  height:260px !important;  /* istersen 320 yap */
  border:0 !important;
}
.formAlert{
  display:none;
  margin-top:15px;
  padding:14px;
  border-radius:12px;
  font-size:14px;
  text-align:center;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.1);
}

.formAlert.success{
  display:block;
  color:#22c55e;
  border-color:#22c55e55;
}

.formAlert.error{
  display:block;
  color:#ef4444;
  border-color:#ef444455;
}
/* ===== GLOBAL FIX ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== HTML BODY ===== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;

  /* Scroll kapatma */
  overflow-x: hidden;
  overflow-y: auto;

  background: #060b18;
  color: #fff;
}

/* Eğer TAMAMEN scroll istemiyorsan bunu aç */
/*
html, body {
  overflow: hidden;
}
*/

/* ===== CUSTOM SCROLLBAR (VOXZ STYLE) ===== */

/* Chrome Edge Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0b1220;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,#0ea5ff,#2563eb);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,#38bdf8,#3b82f6);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2563eb #0b1220;
}
