/* MP Automotive Rent - static replica v8 */
:root{
  --header-h:112px;
  --mobile-header-h:90px;
  --orange:#f47a18;
  --green:#2e8b58;
  --dark:#4a4a49;
  --text:#050505;
  --muted:#777;
  --safe:960px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:#fff;
  font-family:"Avenir LT W01_35 Light1475496","Avenir LT W01 35 Light","Nunito Sans","Avenir Next","Avenir","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.35;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;width:100%;height:auto}
button,input{font:inherit}

/* header */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 95px;
  background:var(--dark);
  color:#fff;
}
.home .site-header{
  background:rgba(0,0,0,.58);
  overflow:hidden;
  backdrop-filter:none;
}
.home .site-header::before,
.home .site-header::after{display:none}
.logo-link{display:block;width:116px;height:76px;flex:0 0 auto}
.logo-link img{width:100%;height:100%;object-fit:contain}
.desktop-nav{display:flex;align-items:center;gap:48px;font-size:15px;color:#fff}
.desktop-nav a{opacity:.96;white-space:nowrap}
.desktop-nav a.active{color:#b6e2c4}
.nav-btn{border:2px solid #fff;border-radius:28px;padding:14px 24px;font-weight:700;line-height:1;background:transparent;color:#fff}
.menu-btn{display:none;background:none;border:0;color:#fff;width:44px;height:44px;padding:10px;cursor:pointer}
.menu-btn span{display:block;width:24px;height:2px;margin:6px auto;background:#fff;transition:.2s}
.menu-btn[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.menu-btn[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-btn[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
.mobile-panel{display:none}

/* shared */
.nowrap{white-space:nowrap}

/* HOME */
.home-hero{
  min-height:830px;
  height:830px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding-top:var(--header-h);
  position:relative;
  overflow:hidden;
  background:url('../img/coast.webp') 50% 14%/cover no-repeat;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 14%;
  z-index:0;
}
.home-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.18);
  z-index:1;
  pointer-events:none;
}
.home-hero-inner{position:relative;z-index:2;width:min(100% - 48px,930px);margin-top:-125px}
.home-title{
  margin:0 0 28px;
  font-size:64px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.015em;
  color:#fff;
}
.search-pill{
  height:76px;
  width:100%;
  border-radius:50px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px 0 52px;
  box-shadow:none;
}
.search-text{font-size:30px;color:#111;line-height:1;font-weight:400}
.search-button{
  height:56px;
  min-width:210px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:34px;
  background:var(--green);
  color:#fff;
  font-size:16px;
  font-weight:700;
}
.home-section-title{
  height:165px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:#fff;
}
.home-section-title .dot{width:38px;height:38px;border-radius:50%;background:var(--orange);display:block}
.home-section-title h2{margin:0;font-size:36px;line-height:1;font-weight:400;letter-spacing:-.01em}
.home-section-link{display:flex;align-items:center;justify-content:center;gap:14px}
.home-cards{
  width:min(84.7vw,1734px);
  margin:0 auto 76px clamp(42px,2.65vw,54px);
  display:grid;
  grid-template-columns:642fr 614fr 438fr;
  gap:18px;
  align-items:start;
}
.home-card{
  position:relative;
  overflow:hidden;
  background:#777;
  color:#fff;
}
.home-card img{width:100%;height:100%;object-fit:cover;filter:brightness(.62)}
.home-card.road-card img{object-position:42% 50%}
.home-card.van-card img{object-position:53% 50%}
.home-card.dash-card img{object-position:48% 45%}
.home-card .card-title{
  position:absolute;
  left:26px;
  top:56px;
  right:28px;
  color:#fff;
  font-size:39px;
  line-height:1.08;
  font-weight:400;
  letter-spacing:-.02em;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.is-visible .card-title{opacity:1;transform:translateY(0)}
.home-card.tall{height:1020px}
.home-card.small{height:295px}
.home-card.text-card{
  height:707px;
  background:#6d767b;
  display:flex;
  align-items:flex-start;
  padding:66px 28px;
  font-size:39px;
  line-height:1.23;
  font-weight:400;
}
.home-card.text-card .text-card-copy{
  position:relative;
  z-index:2;
  opacity:0;
  transform:translateY(18px);
  transition:opacity .9s ease, transform .9s ease;
}
.home-card.text-card.is-visible .text-card-copy{opacity:1;transform:translateY(0)}
.home-card.text-card::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;height:360px;
  background-color:#6d767b;
  background-image:url('../img/van-beach-dark.webp');
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:auto 100%;
  opacity:1;
  z-index:1;
}
.right-stack{display:grid;gap:20px}
.map-section{height:355px;width:100%;overflow:hidden;background:#dce6e9;border:0}
.map-section iframe{width:100%;height:100%;display:block;border:0}

/* PERCHE */
.perche main{padding-top:var(--header-h)}
.intro-text{
  min-height:365px;
  padding:98px 24px 35px;
  text-align:center;
  background:#fff;
}
.intro-text h1{
  margin:0 auto 27px;
  max-width:980px;
  font-size:47px;
  line-height:1.18;
  font-weight:400;
  letter-spacing:-.02em;
}
.intro-text p{
  margin:0 auto;
  max-width:960px;
  font-size:17px;
  line-height:1.28;
  font-weight:400;
  text-align:left;
}
.info-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:540px;
  border-top:1px solid #1c1c1c;
}
.info-row:last-of-type{border-bottom:1px solid #1c1c1c}
.info-media{min-height:540px;background:#ddd;overflow:hidden}
.info-media img{width:100%;height:100%;object-fit:cover}
.info-media.interior img{object-position:center center}
.info-media.car img{object-position:center center}
.info-media.fleet img{object-position:center center}
.info-media.business img{object-position:center center}
.info-copy{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:64px 36px;
}
.info-copy-inner{width:100%;max-width:500px}
.info-copy.center .info-copy-inner{max-width:420px;text-align:center}
.info-copy.left .info-copy-inner{max-width:410px;text-align:left}
.info-copy h2{
  margin:0 0 36px;
  font-size:36px;
  line-height:1.2;
  font-weight:400;
  letter-spacing:-.02em;
}
.info-copy.center h2{font-size:38px;margin-bottom:50px}
.info-copy p{
  margin:0;
  font-size:16px;
  line-height:1.66;
  font-weight:400;
}
.info-copy.center p{text-align:center;line-height:1.75}
.info-copy ul{
  margin:0;
  padding-left:22px;
  font-size:16px;
  line-height:1.32;
}
.info-copy li{margin:0 0 10px}
.info-row.privati{min-height:690px}
.info-row.privati .info-media,.info-row.privati .info-copy{min-height:690px}
.info-row.aziende{min-height:650px}
.info-row.aziende .info-media,.info-row.aziende .info-copy{min-height:650px}

/* footer */
.footer{
  background:#fff;
  padding:54px 0 0;
  color:#626262;
  font-size:14px;
}
.footer-inner{
  width:min(960px,calc(100% - 48px));
  margin:0 auto;
  border-bottom:1px solid #565656;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  min-height:122px;
  padding:12px 0 28px;
}
.footer-logo{width:116px;height:75px;flex:0 0 auto}
.footer-logo img{height:100%;object-fit:contain}
.footer-text{line-height:1.4;text-align:left;color:#5b5b5b}
.footer-copy{text-align:center;color:#9a9a9a;font-size:12px;padding:22px 16px 48px}

@media (max-width:900px){
  body{font-size:15px;background:#fff}
  .site-header,.home .site-header{
    height:var(--mobile-header-h);
    padding:0 18px;
    background:#4b4b4b;
  }
  .home .site-header::before,.home .site-header::after{display:none}
  .logo-link{width:77px;height:58px}
  .desktop-nav{display:none}
  .menu-btn{display:block}
  .mobile-panel{
    position:fixed;
    inset:var(--mobile-header-h) 0 0 0;
    z-index:999;
    background:#4b4b4b;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:24px;
    font-size:22px;
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease;
  }
  .mobile-panel.is-open{opacity:1;pointer-events:auto}
  body.menu-open{overflow:hidden}
 .home-hero{
    margin-top:var(--mobile-header-h);
    padding-top:0;
    height:407px;
    min-height:407px;
    background-position:center top;
  }
  .home-hero-inner{width:100%;padding:0 16px;margin-top:20px}
  .home-title{
    font-size:26px;
    line-height:1.05;
    margin:0 0 4px;
    letter-spacing:-.02em;
  }
  .home-title::after{
    content:"Viaggia come vuoi";
    display:block;
    font-size:18px;
    line-height:1.15;
    font-weight:800;
    margin-top:2px;
  }
  .search-pill{display:block;height:auto;width:auto;background:transparent;padding:0;border-radius:0}
  .search-text{display:none}
  .search-button{height:40px;min-width:0;width:max-content;margin:18px auto 0;padding:0 18px;border-radius:20px;font-size:14px}
  .home-section-title{height:95px;justify-content:flex-start;padding-left:42px;gap:14px}
  .home-section-title .dot{width:22px;height:22px}
  .home-section-title h2{font-size:26px}
  .home-cards{width:100%;display:block;margin:0}
  .home-card{width:100%;border:0}
  .home-card.tall{height:300px}
  .home-card.small{height:236px}
  .home-card.text-card{height:255px;padding:28px 22px;font-size:25px;line-height:1.22}
  .home-card.text-card::after{height:128px;background-position:50% 62%}
  .home-card .card-title{left:21px;top:23px;right:16px;font-size:29px;line-height:1.03}
  .right-stack{display:block}
  .map-section{height:260px}

  .perche main{padding-top:var(--mobile-header-h)}
  .intro-text{
    min-height:0;
    padding:46px 20px 30px;
  }
  .intro-text h1{
    font-size:31px;
    line-height:1.36;
    max-width:280px;
    margin-bottom:28px;
  }
  .intro-text p{
    max-width:280px;
    font-size:15px;
    line-height:1.28;
    text-align:left;
  }
  .info-row,.info-row.privati,.info-row.aziende{
    display:flex;
    flex-direction:column;
    min-height:0;
    border-top:0;
  }
  .info-row.reverse .info-media{order:1}
  .info-row.reverse .info-copy{order:2}
  .info-media,.info-row.privati .info-media,.info-row.aziende .info-media{
    min-height:0;height:205px;order:1;border-top:1px solid #b4b4b4;
  }
  .info-media.interior{height:205px}
  .info-media.car{height:242px}
  .info-media.fleet{height:260px}
  .info-media.business{height:226px}
  .info-copy,.info-row.privati .info-copy,.info-row.aziende .info-copy{
    min-height:0;order:2;padding:36px 20px 35px;border-top:0;
  }
  .info-copy-inner,.info-copy.center .info-copy-inner,.info-copy.left .info-copy-inner{max-width:280px}
  .info-copy h2,.info-copy.center h2{
    margin:0 0 24px;
    font-size:28px;
    line-height:1.18;
    text-align:center;
  }
  .info-copy p,.info-copy.center p{
    font-size:15px;
    line-height:1.54;
    text-align:center;
  }
  .info-copy.left p{text-align:left;line-height:1.36}
  .info-copy ul{font-size:15px;line-height:1.32;padding-left:18px}
  .info-copy li{margin-bottom:7px}
  .footer{padding-top:35px;font-size:14px}
  .footer-inner{
    width:calc(100% - 40px);
    min-height:0;
    display:block;
    padding:0 0 20px;
    border-bottom:1px solid #606060;
  }
  .footer-logo{width:82px;height:58px;margin:0 0 10px}
  .footer-text{line-height:1.35}
  .footer-copy{font-size:10px;padding:18px 10px 44px}
}


/* === v13 mobile rebuild === */
@media (max-width:900px){
  html, body{
    width:100%;
    min-width:0;
    overflow-x:hidden;
    background:#fff;
  }

  .site-header,
  .home .site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:90px;
    padding:0 18px;
    background:#4b4b4b;
  }

  .home .site-header{
    background:rgba(0,0,0,.58);
    backdrop-filter:none;
  }

  .logo-link{
    width:78px;
    height:58px;
  }

  .menu-btn{
    display:block;
    width:42px;
    height:42px;
  }

  .mobile-panel{
    inset:90px 0 0 0;
    background:#4b4b4b;
  }

  /* HOME mobile: Wix-like static hero */
  .home-hero{
    margin-top:90px !important;
    padding-top:0 !important;
    height:327px !important;
    min-height:327px !important;
    background:
      linear-gradient(rgba(0,0,0,.32),rgba(0,0,0,.32)),
      url('../img/coast.webp') 50% 50%/cover no-repeat !important;
  }

  .hero-video{
    display:none !important;
  }

  .home-hero-overlay{
    display:none !important;
  }

  .home-hero-inner{
    width:100% !important;
    padding:0 16px !important;
    margin-top:8px !important;
  }

  .home-title{
    font-size:26px !important;
    line-height:1.04 !important;
    margin:0 !important;
    font-weight:800 !important;
  }

  .home-title::after{
    content:"Viaggia come vuoi";
    display:block;
    font-size:18px;
    line-height:1.1;
    font-weight:800;
    margin-top:2px;
  }

  .search-pill{
    display:block !important;
    width:auto !important;
    height:auto !important;
    padding:0 !important;
    background:transparent !important;
    border-radius:0 !important;
  }

  .search-text{
    display:none !important;
  }

  .search-button{
    height:40px !important;
    width:max-content !important;
    min-width:0 !important;
    margin:18px auto 0 !important;
    padding:0 18px !important;
    border-radius:20px !important;
    font-size:14px !important;
  }

  .home-section-title{
    height:95px !important;
    justify-content:flex-start !important;
    padding-left:42px !important;
    gap:14px !important;
  }

  .home-section-title .dot{
    width:22px !important;
    height:22px !important;
  }

  .home-section-title h2{
    font-size:26px !important;
  }

  .home-cards{
    width:100% !important;
    margin:0 !important;
    display:block !important;
  }

  .home-card{
    width:100% !important;
    border:0 !important;
  }

  .home-card.tall{
    height:300px !important;
  }

  .home-card.small{
    height:236px !important;
  }

  .home-card.text-card{
    height:255px !important;
    padding:28px 22px !important;
    font-size:25px !important;
    line-height:1.22 !important;
  }

  .home-card.text-card::after{
    height:126px !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-position:50% 50% !important;
    background-size:cover !important;
  }

  .home-card .card-title{
    left:21px !important;
    top:23px !important;
    right:16px !important;
    font-size:29px !important;
    line-height:1.03 !important;
  }

  .right-stack{
    display:block !important;
  }

  .map-section{
    height:260px !important;
  }

  /* PERCHÉ CONVIENE mobile */
  .perche main{
    padding-top:90px !important;
  }

  .intro-text{
    padding:44px 20px 28px !important;
    min-height:0 !important;
  }

  .intro-text h1{
    max-width:280px !important;
    font-size:31px !important;
    line-height:1.35 !important;
    margin:0 auto 28px !important;
    text-align:center !important;
  }

  .intro-text p{
    max-width:280px !important;
    font-size:15px !important;
    line-height:1.28 !important;
    text-align:left !important;
  }

  .info-row,
  .info-row.privati,
  .info-row.aziende{
    display:flex !important;
    flex-direction:column !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-row.reverse .info-media{
    order:1 !important;
  }

  .info-row.reverse .info-copy{
    order:2 !important;
  }

  .info-media,
  .info-row.privati .info-media,
  .info-row.aziende .info-media{
    order:1 !important;
    min-height:0 !important;
    height:205px !important;
    border-top:1px solid #b4b4b4 !important;
  }

  .info-media.interior{height:205px !important;}
  .info-media.car{height:242px !important;}
  .info-media.fleet{height:260px !important;}
  .info-media.business{height:226px !important;}

  .info-copy,
  .info-row.privati .info-copy,
  .info-row.aziende .info-copy{
    order:2 !important;
    min-height:0 !important;
    padding:36px 20px 35px !important;
    border-top:0 !important;
  }

  .info-copy-inner,
  .info-copy.center .info-copy-inner,
  .info-copy.left .info-copy-inner{
    max-width:280px !important;
  }

  .info-copy h2,
  .info-copy.center h2{
    margin:0 0 24px !important;
    font-size:28px !important;
    line-height:1.18 !important;
    text-align:center !important;
  }

  .info-copy p,
  .info-copy.center p{
    font-size:15px !important;
    line-height:1.54 !important;
    text-align:center !important;
  }

  .info-copy.left p{
    text-align:left !important;
    line-height:1.36 !important;
  }

  .info-copy ul{
    font-size:15px !important;
    line-height:1.32 !important;
    padding-left:18px !important;
  }

  .info-copy li{
    margin-bottom:7px !important;
  }

  .footer{
    padding-top:35px !important;
    font-size:14px !important;
  }

  .footer-inner{
    width:calc(100% - 40px) !important;
    min-height:0 !important;
    display:block !important;
    padding:0 0 20px !important;
    border-bottom:1px solid #606060 !important;
  }

  .footer-logo{
    width:82px !important;
    height:58px !important;
    margin:0 0 10px !important;
  }

  .footer-copy{
    font-size:10px !important;
    padding:18px 10px 44px !important;
  }
}


/* === v14 mobile: Wix mobile header is in-flow, not fixed === */
@media (max-width:900px){
  .site-header,
  .home .site-header{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    height:90px !important;
    padding:0 18px !important;
    background:#4b4b4b !important;
    z-index:2001 !important;
  }

  .home .site-header{
    background:#4b4b4b !important;
  }

  .home-hero{
    margin-top:0 !important;
    padding-top:0 !important;
    height:327px !important;
    min-height:327px !important;
    background:
      linear-gradient(rgba(0,0,0,.32),rgba(0,0,0,.32)),
      url('../img/coast.webp') 50% 50%/cover no-repeat !important;
  }

  .hero-video,
  .home-hero video{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
  }

  .home-hero-overlay{
    display:none !important;
  }

  .perche main{
    padding-top:0 !important;
  }

  .mobile-panel{
    position:fixed !important;
    inset:0 !important;
    padding-top:90px !important;
    z-index:2000 !important;
    background:#4b4b4b !important;
  }

  body.menu-open .site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
  }

  .home-card .card-title,
  .home-card.text-card .text-card-copy{
    opacity:1 !important;
    transform:none !important;
  }
}

/* === v15 home media crop correction === */
/* Desktop: media cuts closer to Wix references */
.hero-video{
  object-position:50% 50%;
}
.home-hero{
  background-position:50% 50%;
}
.home-card.road-card img{
  object-position:50% 50%;
}
.home-card.van-card img{
  object-position:52% 50%;
}
.home-card.dash-card img{
  object-position:50% 50%;
}
.home-card.text-card::after{
  background-image:url('../img/van-beach-dark.webp');
  background-position:50% 50%;
  background-size:cover;
}

@media (max-width:900px){
  /* Mobile home: keep the actual video, not the static coast fallback */
  .home-hero{
    background:#111 !important;
    height:327px !important;
    min-height:327px !important;
  }

  .hero-video,
  .home-hero video{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:50% 50% !important;
  }

  .home-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.32);
    pointer-events:none;
    z-index:1;
  }

  .home-hero-inner{
    z-index:2 !important;
  }

  .home-card.road-card img{
    object-position:50% 50% !important;
  }

  .home-card.van-card img{
    object-position:52% 50% !important;
  }

  .home-card.dash-card img{
    object-position:50% 50% !important;
  }

  .home-card.text-card::after{
    height:130px !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-size:cover !important;
    background-position:50% 68% !important;
  }
}

/* === v16 mobile: match Wix mobile preview proportions === */
@media (max-width:900px){
  html, body{
    min-width:0 !important;
    overflow-x:hidden !important;
    background:#fff !important;
  }

  /* Wix mobile editor works like a narrow mobile canvas. */
  .site-header,
  main,
  .mobile-panel{
    width:320px !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .site-header,
  .home .site-header{
    position:relative !important;
    height:90px !important;
    padding:0 18px !important;
    background:#4b4b4b !important;
    z-index:2001 !important;
  }

  .logo-link{
    width:77px !important;
    height:58px !important;
  }

  .menu-btn{
    display:block !important;
    width:42px !important;
    height:42px !important;
  }

  .mobile-panel{
    position:fixed !important;
    left:50% !important;
    right:auto !important;
    top:0 !important;
    bottom:0 !important;
    transform:translateX(-50%) !important;
    max-width:100vw !important;
    padding-top:90px !important;
    background:#4b4b4b !important;
  }

  body.menu-open .site-header{
    position:fixed !important;
    left:50% !important;
    right:auto !important;
    top:0 !important;
    transform:translateX(-50%) !important;
    max-width:100vw !important;
  }

  .perche main{
    padding-top:0 !important;
  }

  /* Home hero: on Wix mobile the hero is image-like, not the wide desktop video crop. */
  .home-hero{
    margin-top:0 !important;
    padding-top:0 !important;
    height:350px !important;
    min-height:350px !important;
    background:
      linear-gradient(rgba(0,0,0,.30),rgba(0,0,0,.30)),
      url('../img/coast.webp') 52% 50%/auto 100% no-repeat !important;
    overflow:hidden !important;
  }

  .hero-video,
  .home-hero video{
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
  }

  .home-hero::after,
  .home-hero-overlay{
    display:none !important;
  }

  .home-hero-inner{
    width:100% !important;
    padding:0 16px !important;
    margin-top:18px !important;
  }

  .home-title{
    font-size:26px !important;
    line-height:1.05 !important;
    margin:0 0 2px !important;
    font-weight:800 !important;
    letter-spacing:-.02em !important;
  }

  .home-title::after{
    content:"Viaggia come vuoi" !important;
    display:block !important;
    font-size:18px !important;
    line-height:1.12 !important;
    font-weight:800 !important;
    margin-top:2px !important;
  }

  .search-pill{
    display:block !important;
    height:auto !important;
    width:auto !important;
    padding:0 !important;
    background:transparent !important;
    border-radius:0 !important;
  }

  .search-text{display:none !important;}

  .search-button{
    height:40px !important;
    width:max-content !important;
    min-width:0 !important;
    margin:18px auto 0 !important;
    padding:0 18px !important;
    border-radius:20px !important;
    font-size:14px !important;
    font-weight:800 !important;
  }

  .home-section-title{
    height:88px !important;
    justify-content:flex-start !important;
    padding-left:42px !important;
    gap:13px !important;
  }

  .home-section-link{
    justify-content:flex-start !important;
    gap:13px !important;
  }

  .home-section-title .dot{
    width:22px !important;
    height:22px !important;
  }

  .home-section-title h2{
    font-size:24px !important;
    line-height:1 !important;
    font-weight:400 !important;
  }

  .home-cards{
    width:100% !important;
    margin:0 !important;
    display:block !important;
  }

  .home-card{
    width:100% !important;
    border:0 !important;
  }

  .home-card.tall{
    height:305px !important;
  }

  .home-card.small{
    height:255px !important;
  }

  .home-card.road-card img{
    object-position:50% 52% !important;
  }

  .home-card.van-card img{
    object-position:50% 47% !important;
  }

  .home-card.dash-card img{
    object-position:50% 50% !important;
  }

  .home-card .card-title{
    left:20px !important;
    top:20px !important;
    right:12px !important;
    font-size:27px !important;
    line-height:1.03 !important;
    font-weight:400 !important;
    opacity:1 !important;
    transform:none !important;
  }

  .right-stack{display:block !important;}

  .home-card.text-card{
    height:260px !important;
    padding:24px 20px !important;
    font-size:24px !important;
    line-height:1.22 !important;
  }

  .home-card.text-card .text-card-copy{
    opacity:1 !important;
    transform:none !important;
  }

  .home-card.text-card::after{
    height:142px !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-size:cover !important;
    background-position:50% 43% !important;
  }

  .map-section{
    height:260px !important;
  }

  /* Perché conviene page: mobile page uses same narrow Wix canvas. */
  .intro-text{
    padding:44px 20px 28px !important;
    min-height:0 !important;
  }

  .intro-text h1{
    max-width:280px !important;
    font-size:31px !important;
    line-height:1.35 !important;
    margin:0 auto 26px !important;
    text-align:center !important;
  }

  .intro-text p{
    max-width:280px !important;
    font-size:15px !important;
    line-height:1.28 !important;
    text-align:left !important;
  }

  .info-row,
  .info-row.privati,
  .info-row.aziende{
    display:flex !important;
    flex-direction:column !important;
    min-height:0 !important;
    border-top:0 !important;
  }

  .info-row.reverse .info-media{order:1 !important;}
  .info-row.reverse .info-copy{order:2 !important;}

  .info-media,
  .info-row.privati .info-media,
  .info-row.aziende .info-media{
    order:1 !important;
    min-height:0 !important;
    height:205px !important;
    border-top:1px solid #b4b4b4 !important;
  }

  .info-media.interior{height:205px !important;}
  .info-media.car{height:242px !important;}
  .info-media.fleet{height:260px !important;}
  .info-media.business{height:226px !important;}

  .info-copy,
  .info-row.privati .info-copy,
  .info-row.aziende .info-copy{
    order:2 !important;
    min-height:0 !important;
    padding:36px 20px 35px !important;
    border-top:0 !important;
  }

  .info-copy-inner,
  .info-copy.center .info-copy-inner,
  .info-copy.left .info-copy-inner{
    max-width:280px !important;
  }

  .info-copy h2,
  .info-copy.center h2{
    margin:0 0 24px !important;
    font-size:28px !important;
    line-height:1.18 !important;
    text-align:center !important;
  }

  .info-copy p,
  .info-copy.center p{
    font-size:15px !important;
    line-height:1.54 !important;
    text-align:center !important;
  }

  .info-copy.left p{
    text-align:left !important;
    line-height:1.36 !important;
  }

  .info-copy ul{
    font-size:15px !important;
    line-height:1.32 !important;
    padding-left:18px !important;
  }

  .info-copy li{margin-bottom:7px !important;}

  .footer{
    padding-top:35px !important;
    font-size:14px !important;
  }

  .footer-inner{
    width:calc(100% - 40px) !important;
    min-height:0 !important;
    display:block !important;
    padding:0 0 20px !important;
    border-bottom:1px solid #606060 !important;
  }

  .footer-logo{
    width:82px !important;
    height:58px !important;
    margin:0 0 10px !important;
  }

  .footer-text{line-height:1.35 !important;}
  .footer-copy{font-size:10px !important;padding:18px 10px 44px !important;}
}


/* === v18 mobile cleanup: no side bands + mobile fixed orange top button === */
.scroll-top{
  display:none;
}

@media (max-width:900px){
  .site-header,
  main,
  .mobile-panel{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  .mobile-panel{
    left:0 !important;
    right:0 !important;
    transform:none !important;
  }

  body.menu-open .site-header{
    left:0 !important;
    right:0 !important;
    transform:none !important;
    width:100% !important;
    max-width:100% !important;
  }

  .scroll-top{
    display:block;
    position:fixed;
    right:18px;
    bottom:76px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:#f47a18;
    z-index:2200;
    cursor:pointer;
    box-shadow:none;
  }

  .scroll-top::before{
    content:"";
    position:absolute;
    left:50%;
    top:54%;
    width:14px;
    height:14px;
    border-left:5px solid #fff;
    border-top:5px solid #fff;
    transform:translate(-50%,-50%) rotate(45deg);
    border-radius:2px;
  }
}

/* === v19 desktop fix: van-beach-dark full image on desktop only === */
@media (min-width:901px){
  .home-card.text-card::after{
    background-color:#6d767b !important;
    background-image:url('../img/van-beach-dark.webp') !important;
    background-repeat:no-repeat !important;
    background-position:center bottom !important;
    background-size:contain !important;
  }
}

/* === v22 Web3Forms availability popup, Wix-like === */
body.modal-open{overflow:hidden}
.form-modal[aria-hidden="true"]{display:none}
.form-modal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:0;
  overflow:auto;
}
.form-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.36);
}
.form-modal-panel{
  position:relative;
  z-index:1;
  width:min(860px,100vw);
  margin:84px auto 40px;
  max-height:none;
  overflow:visible;
  background:#25814f;
  color:#fff;
  border-radius:0;
  padding:28px 40px 34px;
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.form-modal-panel h2{
  margin:0 0 34px;
  font-size:31px;
  line-height:1;
  font-weight:400;
  letter-spacing:-.02em;
  color:#fff;
}
.form-modal-intro{display:none}
.form-modal-close{
  position:absolute;
  top:24px;
  right:24px;
  width:18px;
  height:18px;
  border:0;
  background:transparent;
  cursor:pointer;
  z-index:2;
}
.form-modal-close::before,
.form-modal-close::after{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:18px;
  height:2px;
  background:#fff;
}
.form-modal-close::before{transform:rotate(45deg)}
.form-modal-close::after{transform:rotate(-45deg)}
.request-form{
  display:block;
  margin:0;
}
.botcheck{display:none !important}
.form-grid{
  display:grid;
  grid-template-columns:190px 1fr 1fr;
  column-gap:16px;
  row-gap:22px;
  align-items:end;
}
.form-section-label{
  font-size:14px;
  line-height:1.25;
  font-weight:800;
  color:#fff;
  align-self:start;
  padding-top:3px;
}
.request-form label.field{
  display:grid;
  gap:7px;
  font-size:12px;
  line-height:1.15;
  font-weight:800;
  color:#fff;
}
.request-form input,
.request-form select,
.request-form textarea{
  width:100%;
  height:42px;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.78);
  border-radius:0;
  background:#1f6c42;
  color:#fff;
  padding:0 12px;
  font:inherit;
  font-size:14px;
  outline:none;
  box-shadow:none;
  appearance:auto;
}
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus{
  border-bottom-color:#fff;
  background:#1d643e;
}
.request-form input[type="date"]{color-scheme:dark}
.form-divider{
  grid-column:1 / -1;
  height:1px;
  background:rgba(255,255,255,.28);
  margin:8px 0 2px;
}
.travel-label{grid-column:1;grid-row:1}
.field-pickup{grid-column:2;grid-row:1}
.field-dropoff{grid-column:3;grid-row:1}
.field-start{grid-column:2;grid-row:2}
.field-end{grid-column:3;grid-row:2}
.field-passengers{grid-column:2;grid-row:3}
.field-rv{grid-column:3;grid-row:3}
.form-divider{grid-row:4}
.personal-label{grid-column:1;grid-row:5}
.field-first{grid-column:2;grid-row:5}
.field-last{grid-column:3;grid-row:5}
.field-phone{grid-column:2;grid-row:6}
.field-email{grid-column:3;grid-row:6}
.form-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  margin-top:24px;
}
.form-submit{
  min-width:128px;
  height:46px;
  border:0;
  border-radius:24px;
  background:#fff;
  color:#111;
  font-size:14px;
  font-weight:400;
  cursor:pointer;
}
.form-submit:disabled{opacity:.65;cursor:wait}
.form-status{
  min-height:18px;
  margin:10px 0 0;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  color:#fff;
}
.form-status.is-error{color:#ffd4d4}

@media (max-width:900px){
  .form-modal{
    align-items:flex-start;
    justify-content:center;
    padding:0;
  }
  .form-modal-panel{
    width:252px;
    max-width:calc(100vw - 32px);
    margin:70px auto 28px;
    padding:27px 15px 30px;
  }
  .form-modal-panel h2{
    font-size:22px;
    line-height:1.05;
    margin:0 0 25px;
  }
  .form-modal-close{
    top:20px;
    right:15px;
  }
  .form-grid{
    display:block;
  }
  .form-section-label{
    display:block;
    margin:0 0 14px;
    font-size:13px;
  }
  .personal-label{
    margin-top:24px;
  }
  .request-form label.field{
    display:grid;
    gap:7px;
    margin-bottom:12px;
    font-size:12px;
  }
  .request-form input,
  .request-form select,
  .request-form textarea{
    height:38px;
    font-size:14px;
    padding:0 10px;
  }
  .form-divider{
    height:1px;
    margin:22px 0 22px;
  }
  .form-actions{
    align-items:center;
    margin-top:20px;
  }
  .form-submit{
    min-width:118px;
    height:42px;
    font-size:13px;
  }
  .form-status{
    text-align:center;
  }
}

/* === v23 form fixes: JSON submit + fullscreen mobile popup === */
@media (max-width:900px){
  body.modal-open{
    overflow:hidden !important;
  }
  .form-modal{
    position:fixed !important;
    inset:0 !important;
    width:100vw !important;
    height:100dvh !important;
    display:block !important;
    padding:0 !important;
    overflow:hidden !important;
    background:#25814f !important;
  }
  .form-modal[aria-hidden="true"]{
    display:none !important;
  }
  .form-modal-backdrop{
    display:none !important;
  }
  .form-modal-panel{
    width:100vw !important;
    max-width:none !important;
    min-height:100dvh !important;
    height:100dvh !important;
    margin:0 !important;
    padding:28px 18px 36px !important;
    overflow-y:auto !important;
    box-sizing:border-box !important;
    background:#25814f !important;
    box-shadow:none !important;
  }
  .form-modal-panel h2{
    font-size:28px !important;
    line-height:1.05 !important;
    margin:0 34px 28px 0 !important;
  }
  .form-modal-close{
    top:24px !important;
    right:20px !important;
    width:22px !important;
    height:22px !important;
  }
  .form-modal-close::before,
  .form-modal-close::after{
    width:22px !important;
    top:10px !important;
  }
  .form-grid{
    display:block !important;
  }
  .form-section-label{
    display:block !important;
    margin:0 0 15px !important;
    font-size:14px !important;
  }
  .personal-label{
    margin-top:28px !important;
  }
  .request-form label.field{
    display:grid !important;
    gap:7px !important;
    margin-bottom:15px !important;
    font-size:13px !important;
  }
  .request-form input,
  .request-form select,
  .request-form textarea{
    height:40px !important;
    font-size:14px !important;
    padding:0 10px !important;
  }
  .form-divider{
    display:block !important;
    height:1px !important;
    margin:26px 0 24px !important;
  }
  .form-actions{
    align-items:center !important;
    margin-top:22px !important;
    padding-bottom:24px !important;
  }
  .form-submit{
    min-width:126px !important;
    height:44px !important;
    font-size:14px !important;
  }
  .form-status{
    width:100% !important;
    text-align:center !important;
    font-size:12px !important;
  }
}


/* === v24: safer Web3Forms submit + real fullscreen mobile modal === */
@media (max-width:900px){
  body.modal-open{
    overflow:hidden !important;
  }
  body.modal-open .site-header,
  body.modal-open main,
  body.modal-open footer{
    width:100vw !important;
    max-width:none !important;
  }
  .form-modal{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    left:0 !important;
    width:100vw !important;
    min-width:100vw !important;
    max-width:none !important;
    height:100dvh !important;
    min-height:100dvh !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important;
    background:#25814f !important;
    overflow:hidden !important;
    z-index:5000 !important;
  }
  .form-modal[aria-hidden="true"]{display:none !important;}
  .form-modal-backdrop{display:none !important;}
  .form-modal-panel{
    position:relative !important;
    top:0 !important;
    left:0 !important;
    right:auto !important;
    width:100vw !important;
    min-width:100vw !important;
    max-width:none !important;
    height:100dvh !important;
    min-height:100dvh !important;
    margin:0 !important;
    padding:28px 18px 44px !important;
    border-radius:0 !important;
    box-shadow:none !important;
    overflow-y:auto !important;
    background:#25814f !important;
  }
}
