:root{
  --primary:#0b6cff;
  --muted:#6b7280;
  font-family:Poppins,Inter,sans-serif
}

*{box-sizing:border-box}

body{
  margin:0;
  background:linear-gradient(180deg,#f8fbff,#ffffff);
  color:#0f1724;
  line-height:1.5
}

.container{max-width:1100px;margin:auto;padding:18px}

header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(6px);
  border-bottom:1px solid #eef2ff;
  z-index:10
}

.nav{display:flex;justify-content:space-between;align-items:center}
.brand{display:flex;gap:12px;align-items:center}
.logo{
  width:48px;height:48px;border-radius:10px;
  background:var(--primary);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:700
}

.brand h1{margin:0;font-size:20px;color:var(--primary)}
nav a{margin-left:14px;text-decoration:none;color:var(--muted);font-weight:600}

.hero{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  padding:48px 0
}

.lead-p{color:var(--muted)}

.btn{
  background:var(--primary);
  color:#fff;
  padding:10px 16px;
  border-radius:10px;
  border:none;
  font-weight:700;
  cursor:pointer
}

.btn.alt{
  background:transparent;
  border:2px solid var(--primary);
  color:var(--primary)
}

.card{
  background:#fff;
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(11,108,255,.06)
}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
  margin-top:16px
}

.service-item{
  border:1px solid #eef2ff;
  padding:14px 16px;
  border-radius:10px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.service-item .btn{
  white-space:nowrap;
  flex-shrink:0;
}



/* FORM */
form label{
  font-weight:600;
  font-size:14px;
  display:block;
  margin-bottom:4px
}

form input,
form textarea,
form select{
  width:100%;
  padding:10px;
  margin-bottom:12px;
  border-radius:8px;
  border:1px solid #e6eefc
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px
}

/* MAP */
.map-box{
  width:100%;
  height:200px;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #eef2ff;
  position:relative
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0
}

/* CLICKABLE OVERLAY */
.map-clickable a{
  position:absolute;
  inset:0;
  z-index:2;
  cursor:pointer
}

/* MAP HINT */
.map-hint{
  position:absolute;
  bottom:8px;
  right:8px;
  background:var(--primary);
  color:#fff;
  font-size:12px;
  padding:4px 8px;
  border-radius:6px;
  z-index:3
}

.small{font-size:13px;color:#94a3b8}

footer{margin-top:30px;text-align:center}

@media(max-width:900px){
  .hero{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  nav a{display:none}
}


