:root{
  --bg:#0b1220;
  --card:#0f172a;
  --text:#e8eefc;
  --muted:#a7b2cc;
  --accent:#38bdf8;
  --accent2:#22c55e;
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 600px at 10% 0%, rgba(56,189,248,.25), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(34,197,94,.18), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92%); margin:0 auto; }

.header{
  position: sticky; top:0; z-index:50;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex; gap:10px; align-items:center; font-weight:800;
  letter-spacing:.2px;
}
.logo{
  width:100%; height:100%; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 30px rgba(56,189,248,.25);
}
.logo-img{
  height: 99px; /* bunu 36 / 48 / 52 yapabilirsin */
  position:absolute;
}
.links{ display:flex; gap:18px; align-items:center; }
.links a{ color: var(--muted); font-weight:600; }
.links a:hover{ color: var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px; border-radius: 14px; font-weight:700;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  transition: .2s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }
.btn.primary{
  border: none;
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  color: #061018;
}
.btn.success{
  border:none;
  background: linear-gradient(135deg, var(--accent2), #86efac);
  color:#061018;
}

.hero{
  padding: 56px 0 22px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.card{
  background: rgba(15,23,42,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroLeft{ padding: 28px; }
.kicker{ color: var(--muted); font-weight:700; }
.h1{
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  margin: 10px 0 12px;
}
.lead{ color: var(--muted); line-height:1.6; }
.actions{ margin-top: 16px; display:flex; gap:10px; flex-wrap:wrap; }

.badges{
  margin-top: 18px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.badge{
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-weight:700;
  font-size: 13px;
}

.heroRight{ overflow:hidden; position:relative; }
.slide{
  height: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 1.2s ease;
}
.slide.active{
  opacity:1;
  transform: scale(1);
}
.overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,.15), rgba(11,18,32,.85));
}
.heroRightContent{
  position:relative;
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  height: 100%;
  justify-content:flex-end;
}
.mini{
  padding: 14px;
  border-radius: 16px;
  background: rgba(11,18,32,.55);
  border: 1px solid var(--border);
}
.mini b{ display:block; margin-bottom:6px; }
.mini p{ color: var(--muted); line-height:1.5; }

.section{ padding: 26px 0; }
.sectionTitle{
  font-size: 20px; font-weight:900;
  margin-bottom: 12px;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service{ padding: 16px; }
.service h3{ font-size: 16px; margin-bottom:8px; }
.service p{ color: var(--muted); line-height:1.6; }
.icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(56,189,248,.14);
  border: 1px solid rgba(56,189,248,.22);
  margin-bottom:10px;
}

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.mobileBtn{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
}

@media (max-width: 900px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroRight{ min-height: 320px; }
  .grid3{ grid-template-columns: 1fr; }
  .links{ display:none; }
  .mobileBtn{ display:inline-flex; }
  .links.open{
    display:flex;
    position:absolute;
    left: 4%;
    right: 4%;
    top: 70px;
    flex-direction:column;
    gap: 10px;
    padding: 14px;
    background: rgba(15,23,42,.95);
    border: 1px solid var(--border);
    border-radius: 18px;
  }
}
/* Floating Quick Quote */
.fabWrap{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display:flex;
  gap:10px;
  align-items:flex-end;
  flex-direction:column;
}

.fab{
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--accent2), #86efac);
  color: #061018;
  display:flex;
  align-items:center;
  gap:10px;
}

.fab small{
  opacity:.75;
  font-weight:800;
}

.fabPanel{
  width: min(360px, 92vw);
  background: rgba(15,23,42,.95);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: translateY(10px);
  opacity: 0;
  pointer-events:none;
  transition: .2s ease;
}

.fabPanel.open{
  transform: translateY(0);
  opacity: 1;
  pointer-events:auto;
}

.fabHead{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
}

.fabHead b{ font-size: 14px; }
.fabClose{
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  cursor:pointer;
}

.fabBody{
  padding: 12px;
  display:grid;
  gap:10px;
}

.fabBody input, .fabBody select, .fabBody textarea{
  width:100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
}

.fabBody textarea{ resize: vertical; }

.fabHint{
  color: var(--muted);
  font-size: 12px;
  line-height:1.4;
}

.fabRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

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