/* HERO */

.geo-hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  text-align:center;
  background:#2f3947;
  padding:0;
}

.geo-hero-bg{
  position:relative;
  width:100%;
  min-height:300px;
  background:#2f3947;
}

.geo-hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(18,27,40,.16), rgba(18,27,40,.22)),
    rgba(0,0,0,.02);
  z-index:1;
}

.geo-hero-img-unica{
  position:absolute;
  top:50%;
  left:50%;
  width:min(520px, 34vw);
  max-width:520px;
  height:auto;
  display:block;
  opacity:.08;
  transform:translate(-50%, -50%);
  pointer-events:none;
  user-select:none;
}

.geo-hero-inner{
  position:absolute;
  inset:0;
  z-index:2;
  max-width:760px;
  margin:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px 16px;
}

.geo-kicker{
  display:inline-block;
  margin:0 0 10px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.85);
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
}

.geo-hero h1{
  font-size:42px;
  line-height:1.08;
  margin:0 0 10px;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.18);
}

.geo-lead{
  max-width:680px;
  margin:0 auto;
  color:#fff;
  line-height:1.4;
  text-shadow:0 2px 8px rgba(0,0,0,.14);
}

.geo-hero strong{
  color:#fff;
}

.geo-cta{
  margin-top:16px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.geo-hero-points{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.geo-point-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  border-radius:18px;
  padding:18px 16px;
  text-align:left;
  box-shadow:0 16px 34px rgba(0,0,0,.14);
}

.geo-point-card span{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.72);
  margin-bottom:6px;
}

.geo-point-card strong{
  display:block;
  color:#fff;
  line-height:1.35;
  font-size:16px;
}


/* SEZIONI */

.geo-section{
  background:#2f3947;
  color:#fff;
  padding:70px 0;
}

.geo-section-alt{
  padding:80px 0;
  background:#2f3947;
  color:#fff;
}

.geo-text-block{
  max-width:720px;
  margin:auto;
}

.geo-text-block p{
  margin-bottom:15px;
  line-height:1.7;
}

.geo-panel{
  max-width:900px;
  margin:auto;
  padding:30px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.035);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}

.geo-panel-dark{
  background:rgba(255,255,255,.04);
}

.geo-section-head{
  text-align:center;
  margin-bottom:24px;
}

.geo-section-head h2{
  margin:0 0 10px;
}

.geo-section-head p{
  margin:0;
  color:rgba(255,255,255,.78);
}


/* LISTE */

.geo-services{
  margin-top:20px;
  padding-left:18px;
  line-height:1.8;
}

.geo-cities{
  margin-top:15px;
  padding-left:18px;
  columns:2;
}


/* GALLERY */

.geo-gallery{
  padding:70px 0;
  text-align:center;
  background:#2f3947;
  color:#fff;
}

.geo-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.geo-gallery-card{
  margin:0;
  padding:10px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.035);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  overflow:hidden;
}

.geo-gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  display:block;
  transition:transform .25s ease;
}

.geo-gallery-grid img:hover{
  transform:scale(1.03);
}


/* MAPPA */

.geo-map{
  background:#2f3947;
  color:#fff;
  padding:80px 0;
  text-align:center;
}

.geo-map-frame{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}


/* BARRA RITORNO HOME */

.geo-back-home{
  padding:34px 0 46px;
  background:#2f3947;
}

.geo-back-home-wrap{
  display:block;
  width:100%;
}

.geo-back-home-bar{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:72px;
  padding:18px 24px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.geo-back-home-bar:hover{
  text-decoration:none;
  transform:translateY(-2px);
  background:rgba(255,255,255,.06);
  border-color:rgba(46,204,113,.30);
  box-shadow:0 22px 46px rgba(0,0,0,.20);
}

.geo-back-home-bar:focus-visible{
  outline:none;
  border-color:rgba(46,204,113,.42);
  box-shadow:
    0 0 0 3px rgba(46,204,113,.22),
    0 22px 46px rgba(0,0,0,.20);
}


/* TESTO */

.geo-section p,
.geo-section li,
.geo-map p,
.geo-gallery p{
  color:rgba(255,255,255,.85);
}

.geo-section h2,
.geo-map h2,
.geo-gallery h2,
.geo-section-alt h2{
  color:#fff;
}

.geo-services li,
.geo-cities li{
  color:rgba(255,255,255,.9);
}

.geo-contact-block{
  text-align:center;
}


/* RESPONSIVE */

@media (max-width:700px){

  .geo-hero-bg{
    min-height:320px;
  }

  .geo-hero-bg::after{
    background:
      linear-gradient(180deg, rgba(18,27,40,.10), rgba(18,27,40,.16)),
      rgba(0,0,0,.01);
  }

  .geo-hero-img-unica{
    width:min(360px, 78vw);
    max-width:360px;
    opacity:.16;
  }

  .geo-hero-inner{
    max-width:92%;
    padding:18px 16px;
  }

  .geo-hero h1{
    font-size:34px;
    line-height:1.08;
    margin:0 0 8px;
  }

  .geo-lead{
    line-height:1.35;
    margin:0 auto;
  }

  .geo-cta{
    margin-top:14px;
  }

  .geo-cities{
    columns:1;
  }

  .geo-gallery-grid{
    grid-template-columns:1fr;
  }

  .geo-hero-points{
    grid-template-columns:1fr;
  }

  .geo-panel{
    padding:22px;
  }

  .geo-back-home{
    padding:24px 0 34px;
  }

  .geo-back-home-bar{
    min-height:64px;
    font-size:16px;
    padding:16px 18px;
    border-radius:16px;
  }
}
