:root{
  --bg:#08111f;
  --text:#e5e7eb;
  --muted:#64748b;
  --accent:#19a7ce;
  --accent-dark:#087ea4;
  --sand:#f8f4ec;
  --cream:#fffaf1;
  --paper:#ffffff;
  --ink:#102033;
  --soft:#e8eef4;
  --gold:#d9a441;
  --green:#0f766e;
  --shadow:0 22px 55px rgba(15,32,51,0.12);
  --radius:24px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--sand);
  color:var(--ink);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

/* HEADER MARINARESCO CHIARO */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6%;
  background: linear-gradient(
    135deg,
    rgba(248, 253, 255, 0.96),
    rgba(218, 244, 248, 0.92)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 111, 145, 0.18);
  box-shadow: 0 8px 28px rgba(0, 86, 120, 0.12);
  z-index: 1000;
}

/* Linea decorativa mare/sabbia */
nav::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 160, 190, 0.75),
    rgba(215, 181, 109, 0.85),
    transparent
  );
  pointer-events: none;
}

/* Logo */
nav .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin: 0;
}

nav .brand-logo {
  display: block;
  height: 66px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

/* Fallback se usi ancora h1 */
nav h1 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #06365f;
  margin: 0;
}

/* Menu */
nav .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav .nav-links a {
  color: #06365f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 13px;
  border-radius: 999px;
  margin: 0;
  transition: all 0.25s ease;
}

nav .nav-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #007c99, #00a8c8);
  transform: translateY(-1px);
}

/* Pulsante Prenota */
nav .nav-links .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d7b56d, #f4d88e);
  color: #06365f !important;
  font-weight: 900;
  margin-left: 8px;
  box-shadow: 0 8px 22px rgba(215, 181, 109, 0.28);
}

nav .nav-links .nav-cta:hover {
  background: linear-gradient(135deg, #06365f, #007c99);
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(0, 124, 153, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    padding: 10px 5%;
  }

  nav .brand-logo {
    height: 50px;
    max-width: 200px;
  }

  nav .nav-links {
    gap: 5px;
  }

  nav .nav-links a {
    font-size: 13px;
    padding: 7px 9px;
  }

  nav .nav-links .nav-cta {
    padding: 8px 12px;
    margin-left: 4px;
  }
}

/* SEZIONI CINEMATICHE - mantenute */
.section{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  text-align:center;
  overflow:hidden;
  color:var(--text);
}

.bg{
  position:absolute;
  width:120%;
  height:120%;
  top:-10%;
  left:-10%;
  background-size:cover;
  background-position:center;
  filter:brightness(0.56);
  transform:scale(1.1);
  transition:transform 1.2s ease;
}

.content{
  position:relative;
  z-index:2;
  max-width:760px;
  padding:0 24px;
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.section.active .content{
  opacity:1;
  transform:translateY(0);
}

.section.active .bg{
  transform:scale(1);
}

/* TIPOGRAFIA CINEMATICA - titolo ridotto */
.section h1{
  font-size:clamp(42px,6vw,58px);
  letter-spacing:-1.6px;
  line-height:1.04;
  text-wrap:balance;
}

.section p{
  margin-top:18px;
  color:#d9e3ee;
  font-size:clamp(17px,2vw,20px);
  line-height:1.65;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,0.26);
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
}

.btn,
.btn-outline,
.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:28px;
  padding:14px 26px;
  border-radius:999px;
  border:none;
  background:var(--accent);
  color:white;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
  transition:.25s ease;
  box-shadow:0 14px 35px rgba(25,167,206,0.32);
}

.btn:hover{
  transform:translateY(-2px);
  background:var(--accent-dark);
}

.btn-outline{
  background:rgba(255,255,255,0.08);
  color:white;
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:none;
  margin-left:10px;
}

.btn-outline:hover{
  background:white;
  color:#102033;
}

.btn-light{
  background:white;
  color:var(--ink);
  box-shadow:0 14px 35px rgba(255,255,255,0.18);
}

.hero-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}

.scroll{
  position:absolute;
  left:50%;
  bottom:34px;
  transform:translateX(-50%);
  z-index:3;
  color:#dbe7f3;
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:.9;
  white-space:nowrap;
  animation:scrollFloat 1.8s ease-in-out infinite;
}

.scroll::after{
  content:"";
  display:block;
  width:1px;
  height:34px;
  margin:10px auto 0;
  background:linear-gradient(to bottom,rgba(255,255,255,.9),rgba(255,255,255,0));
  border-radius:999px;
}

@keyframes scrollFloat{
  0%,100%{
    transform:translateX(-50%) translateY(0);
    opacity:.85;
  }
  50%{
    transform:translateX(-50%) translateY(-7px);
    opacity:1;
  }
}

@keyframes bounce{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-10px)}
}

/* IMMAGINI CINEMATICHE */
.hero{
  position: relative;
  overflow: hidden;
}

.hero .bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 92, 130, 0.10),
    rgba(3, 38, 68, 0.35)
  );
  z-index: 1;
}

.hero .content{
  position: relative;
  z-index: 2;
}

.hero .scroll{
  position:absolute;
  left:50%;
  bottom:25px;
  z-index:2;
}

.stromboli .bg{
  background-image:
    linear-gradient(rgba(0,0,0,0.25),rgba(0,0,0,0.7)),
    url('https://www.messinatoday.it/~media/horizontal-hi/31736146879513/stromboli-pixabay.jpg');
}

.vulcano .bg{
  background-image:
    linear-gradient(rgba(8,17,31,0.10),rgba(8,17,31,0.48)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1800&q=80');
}

.salina .bg{
  background-image:
    linear-gradient(rgba(8,17,31,0.10),rgba(8,17,31,0.48)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80');
}

.final .bg{
  background-image:
    linear-gradient(135deg,rgba(4,42,62,0.84),rgba(19,118,131,0.58)),
    url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1800&q=80');
}

/* SEZIONI BUSINESS - sfondo chiaro e professionale */
.business,
.contact,
.trust,
.skippers,
.how,
.faq,
.experiences,
.gallery-strip{
  padding:105px 8%;
  background:var(--sand);
  color:var(--ink);
}

.business.alt,
.how,
.faq{
  background:#ffffff;
}

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
}

.section-header{
  display:flex;
  justify-content:space-between;
  gap:36px;
  align-items:flex-end;
  margin-bottom:38px;
}

.kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--accent-dark);
  font-size:13px;
  font-weight:900;
  letter-spacing:.9px;
  text-transform:uppercase;
}

.section-title{
  font-size:clamp(32px,4vw,46px);
  line-height:1.08;
  letter-spacing:-1.3px;
  color:#0f2136;
  max-width:760px;
}

.section-subtitle{
  color:#5d6d7e;
  font-size:17px;
  line-height:1.7;
  max-width:500px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.grid.two{
  grid-template-columns:repeat(2,1fr);
}

.card{
  background:var(--paper);
  border-radius:var(--radius);
  border:1px solid rgba(15,32,51,0.08);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(15,32,51,0.16);
}

.card-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.35),rgba(0,0,0,0.02));
}

.card-body{
  padding:24px;
}

.card h3{
  margin-bottom:10px;
  color:#0f2136;
  font-size:22px;
  line-height:1.2;
}

.small{
  color:#5d6d7e;
  font-size:15px;
  line-height:1.65;
}

.meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0 4px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
  padding:7px 11px;
  border-radius:999px;
  background:#eef8fb;
  color:#087ea4;
}

.badge.gold{
  background:#fff4d8;
  color:#8a5e00;
}

.badge.green{
  background:#e7f7f4;
  color:#0f766e;
}

.badge.blu{
  background:#e8f7ff;
  color:#007c99;
}

.card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid #edf1f5;
}

.price{
  color:#0f2136;
  font-size:19px;
  font-weight:900;
}

.price span{
  display:block;
  color:#7a8795;
  font-size:12px;
  font-weight:700;
}

.link{
  color:var(--accent-dark);
  font-weight:900;
  text-decoration:none;
}


/* SERVIZI - layout moderno a mosaico */
.services-mosaic{
  counter-reset:service;
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}

.services-mosaic .card{
  counter-increment:service;
  position:relative;
  grid-column:span 4;
  border-radius:32px;
  background:linear-gradient(180deg,#ffffff,#f8fbfd);
  overflow:hidden;
}

.services-mosaic .card:nth-child(1),
.services-mosaic .card:nth-child(2){
  grid-column:span 6;
}

.services-mosaic .card::before{
  content:"0" counter(service);
  position:absolute;
  top:26px;
  right:26px;
  z-index:2;
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.88);
  color:#087ea4;
  font-size:13px;
  font-weight:950;
  box-shadow:0 14px 34px rgba(15,32,51,0.16);
  backdrop-filter:blur(10px);
}

.services-mosaic .card-img{
  height:238px;
  margin:14px;
  border-radius:26px;
  overflow:hidden;
}

.services-mosaic .card-body{
  padding:8px 26px 26px;
}

.services-mosaic .card h3{
  display:flex;
  align-items:center;
  gap:10px;
}

.services-mosaic .card h3::before{
  content:"";
  width:10px;
  height:28px;
  border-radius:999px;
  background:linear-gradient(180deg,#19a7ce,#d9a441);
  flex:0 0 auto;
}

.services-mosaic .card-footer{
  background:#f8fbfd;
  border:1px solid #edf1f5;
  border-radius:18px;
  padding:14px 16px;
}

/* ESPERIENZE E TRANSFER - layout alternato */
.experience-services{
  display:grid;
  gap:24px;
}

.experience-services .card{
  display:grid;
  grid-template-columns:minmax(280px,.78fr) 1fr;
  align-items:stretch;
  border-radius:34px;
  background:linear-gradient(135deg,#ffffff,#f7fbfd);
}

.experience-services .card:nth-child(even){
  grid-template-columns:1fr minmax(280px,.78fr);
}

.experience-services .card:nth-child(even) .card-img{
  order:2;
}

.experience-services .card-img{
  height:auto;
  min-height:326px;
  margin:16px;
  border-radius:28px;
  overflow:hidden;
}

.experience-services .card-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:34px 34px 34px 12px;
}

.experience-services .card:nth-child(even) .card-body{
  padding:34px 12px 34px 34px;
}

.experience-services .card-footer{
  max-width:520px;
}

/* FLOTTA - slider moderno */
.boat-slider{
  position:relative;
  margin-top:10px;
}

.boat-slider-head{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:12px;
  margin:-10px 0 18px;
}

.boat-arrow{
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#0f2136;
  color:white;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 16px 36px rgba(15,32,51,0.18);
  transition:.25s ease;
}

.boat-arrow:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,#087ea4,#19a7ce);
}

.boat-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:100%;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:8px 4px 30px;
  scrollbar-width:none;
}

.boat-track::-webkit-scrollbar{
  display:none;
}

.boat-slide{
  scroll-snap-align:center;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  min-height:520px;
  border-radius:38px;
  background:
    radial-gradient(circle at top left, rgba(25,167,206,.12), transparent 34%),
    linear-gradient(135deg,#ffffff,#f6fbfd);
}

.boat-slide .card-img{
  height:auto;
  min-height:480px;
  margin:20px;
  border-radius:30px;
  overflow:hidden;
}

.boat-slide .card-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:46px 46px 46px 18px;
}

.boat-slide h3{
  font-size:clamp(28px,3.2vw,42px);
  letter-spacing:-1px;
}

.boat-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:2px;
}

.boat-dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:999px;
  background:#c6d6e3;
  cursor:pointer;
  transition:.25s ease;
}

.boat-dot.active{
  width:34px;
  background:#087ea4;
}

/* TRUST BAR */
.trust{
  padding-top:72px;
  padding-bottom:72px;
  background:linear-gradient(180deg,#fffaf1,#f3efe6);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.trust-item{
  background:white;
  border:1px solid rgba(15,32,51,0.08);
  border-radius:22px;
  padding:22px;
  box-shadow:0 14px 34px rgba(15,32,51,0.08);
}

.trust-item strong{
  display:block;
  color:#0f2136;
  font-size:26px;
  margin-bottom:6px;
}

.trust-item span{
  color:#5d6d7e;
  font-size:14px;
  line-height:1.5;
}

/* INTRO EXPERIENCE */
.experiences{
  background:#ffffff;
}

.experience-box{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

.experience-photo{
  min-height:490px;
  border-radius:34px;
  background-image:
    linear-gradient(rgba(10,35,52,0.08),rgba(10,35,52,0.18)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80');
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
}

.check-list{
  display:grid;
  gap:16px;
  margin-top:26px;
}

.check{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:#334155;
  line-height:1.6;
}

.check b{
  color:#0f2136;
}

.check-icon{
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#e7f7f4;
  color:#0f766e;
  display:grid;
  place-items:center;
  font-weight:900;
}

/* TOUR CARD IMAGES */
/* FOTO SERVIZI DAL VOLANTINO */
.service-sunset {
  background-image: url("img/aperitivo-tramonto.jpg");
  background-position: center;
}

.service-escursioni {
  background-image: url("img/escursioni-eolie.jpg");
  background-position: center;
}

.service-taxi-boat {
  background-image: url("img/taxi-boat.jpg");
  background-position: center;
}

.service-sottocosta {
  background-image: url("img/giri-sottocosta.jpg");
  background-position: center;
}

.service-pesca {
  background-image: url("img/battute-pesca.jpg");
  background-position: center;
}

.service-navetta {
  background-image: url("img/navetta-aeroportuale.jpg");
  background-position: center;
}

.service-equitazione {
  background-image: url("img/equitazione.jpg");
  background-position: center;
}

.service-guest-house {
  background-image: url("img/guest-house.jpg");
  background-position: center;
}

.service-empty-1 {
  background: linear-gradient(135deg, #0f766e, #67e8f9);
}

.service-empty-2 {
  background: linear-gradient(135deg, #1d4ed8, #93c5fd);
}

.service-empty-3 {
  background: linear-gradient(135deg, #92400e, #facc15);
}
.tour-stromboli{background-image:url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1000&q=80');}
.tour-vulcano{background-image:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=80');}
.tour-salina{background-image:url('https://images.unsplash.com/photo-1528150177508-7cc0c36cda5c?auto=format&fit=crop&w=1000&q=80');}
.tour-one{background-image:url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1000&q=80');}
.tour-three{background-image:url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1000&q=80');}
.tour-private{background-image:url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?auto=format&fit=crop&w=1000&q=80');}

/* BOATS */
.boat-gozzo{background-image:url('img/trimarchi.jpg');}
.boat-yacht{background-image:url('img/lomac.jpg');}
.boat-speed{background-image:url('img/sacs.webp');}

.features{
  list-style:none;
  display:grid;
  gap:10px;
  margin-top:16px;
}

.features li{
  color:#4b5b6b;
  font-size:14px;
  line-height:1.5;
}

.features li::before{
  content:"✓";
  color:var(--green);
  font-weight:900;
  margin-right:8px;
}

/* SKIPPER */
.skippers{
  background:linear-gradient(180deg,#fffaf1,#ffffff);
}

.skipper-card{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:38px;
  background:white;
  border-radius:34px;
  padding:22px;
  border:1px solid rgba(15,32,51,0.08);
  box-shadow:var(--shadow);
  align-items:center;
}

.skipper-photo{
  min-height:520px;
  border-radius:26px;
  background-image:
    linear-gradient(rgba(8,17,31,0.08),rgba(8,17,31,0.20)),
    url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=80');
  background-size:cover;
  background-position:center;
}

.skipper-info{
  padding:22px 26px 22px 0;
}

.skipper-info h2{
  font-size:clamp(32px,4vw,46px);
  letter-spacing:-1.3px;
  line-height:1.08;
  color:#0f2136;
  margin-bottom:16px;
}

.skipper-info p{
  color:#5d6d7e;
  font-size:17px;
  line-height:1.75;
  margin-bottom:16px;
}

.credentials{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:26px;
}

.credential{
  background:#f6f9fb;
  border-radius:18px;
  padding:18px;
  border:1px solid #edf1f5;
}

.credential strong{
  display:block;
  color:#0f2136;
  margin-bottom:5px;
}

.credential span{
  color:#66788a;
  font-size:14px;
  line-height:1.5;
}

/* HOW */
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step{
  padding:26px;
  background:#f8fbfd;
  border:1px solid #e9f0f5;
  border-radius:24px;
}

.step-number{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#0f2136;
  color:white;
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:18px;
}

.step h3{
  color:#0f2136;
  font-size:19px;
  margin-bottom:10px;
}

.step p{
  color:#5d6d7e;
  line-height:1.6;
  font-size:15px;
}

/* GALLERY */
.gallery-strip{
  padding-top:60px;
  padding-bottom:60px;
  background:#f0f7fa;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  grid-template-rows:220px 220px;
  gap:18px;
}

.gallery-item{
  border-radius:24px;
  background-size:cover;
  background-position:center;
  box-shadow:0 18px 45px rgba(15,32,51,0.12);
  overflow:hidden;
}

.gallery-item.big{
  grid-row:span 2;
  background-image:url('https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1200&q=80');
}

.gallery-item.g1{background-image:url('https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=800&q=80');}
.gallery-item.g2{background-image:url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=800&q=80');}
.gallery-item.g3{background-image:url('https://images.unsplash.com/photo-1528150177508-7cc0c36cda5c?auto=format&fit=crop&w=800&q=80');}
.gallery-item.g4{background-image:url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80');}

/* TESTIMONIALS */
.quote{
  background:white;
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,32,51,0.08);
}

.quote p{
  color:#344456;
  line-height:1.7;
  font-size:16px;
}

.quote strong{
  display:block;
  margin-top:20px;
  color:#0f2136;
}

.stars{
  color:#d9a441;
  margin-bottom:12px;
  letter-spacing:2px;
}

/* FAQ */
.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  background:#f8fbfd;
  border:1px solid #e9f0f5;
  border-radius:20px;
  padding:22px 24px;
}

.faq-item h3{
  color:#0f2136;
  font-size:18px;
  margin-bottom:8px;
}

.faq-item p{
  color:#5d6d7e;
  line-height:1.65;
  font-size:15px;
}

/* CONTATTI */
.contact{
  background:linear-gradient(180deg,#f0f7fa,#fffaf1);
}

.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:start;
}

.contact-panel{
  background:#0f2136;
  color:white;
  border-radius:30px;
  padding:34px;
  box-shadow:var(--shadow);
}

.contact-panel h2{
  font-size:36px;
  letter-spacing:-1px;
  margin-bottom:14px;
}

.contact-panel p{
  color:#dbe7f3;
  line-height:1.7;
  margin-bottom:24px;
}

.contact-details{
  display:grid;
  gap:16px;
  margin-top:26px;
}

.contact-detail{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
}

.contact-detail strong{
  display:block;
  margin-bottom:4px;
}

.contact-detail span{
  color:#dbe7f3;
  font-size:14px;
}

form{
  background:white;
  border-radius:30px;
  padding:34px;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,32,51,0.08);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

label{
  display:block;
  color:#334155;
  font-size:13px;
  font-weight:800;
  margin-bottom:7px;
}

input,
textarea,
select{
  width:100%;
  padding:14px 14px;
  margin-bottom:16px;
  border-radius:14px;
  border:1px solid #dde7ef;
  background:#f8fbfd;
  color:#102033;
  font-size:15px;
  outline:none;
  transition:.2s ease;
}

input:focus,
textarea:focus,
select:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(25,167,206,0.12);
}

textarea{
  resize:vertical;
  min-height:130px;
}

.form-note{
  color:#66788a;
  font-size:13px;
  line-height:1.5;
  margin-top:14px;
}

/* FINAL CTA */
.final h1{
  font-size:clamp(40px,5.5vw,56px);
}

.footer{
  background:#08111f;
  color:#dbe7f3;
  padding:34px 8%;
}

.footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}

.footer a{
  color:#dbe7f3;
  text-decoration:none;
  margin-left:16px;
  font-size:14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-powered {
  text-align: center;
  flex: 1;
}

.footer-powered a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  margin-left: 5px;
}

.footer-powered a:hover {
  color: #4da6ff; /* azzurro blu marinaresco */
}

@media(max-width:980px){
  nav{
    padding:14px 5%;
  }

  nav .nav-links{
    display:none;
  }

  .grid,
  .grid.two,
  .trust-grid,
  .steps,
  .experience-box,
  .skipper-card,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .section-header{
    display:block;
  }

  .section-subtitle{
    margin-top:16px;
  }

  .credentials,
  .form-grid{
    grid-template-columns:1fr;
  }

  .skipper-info{
    padding:10px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-template-rows:repeat(5,230px);
  }

  .gallery-item.big{
    grid-row:span 1;
  }
}


@media(max-width:620px){
  .section h1{
    font-size:40px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:center;
  }

  .btn-outline{
    margin-left:0;
  }

  .business,
  .contact,
  .trust,
  .skippers,
  .how,
  .faq,
  .experiences,
  .gallery-strip{
    padding:72px 6%;
  }
}

@media(max-width:620px){
  .section.hero{
    height:100svh;
    min-height:100svh;
  }

  .hero .content{
    transform:translateY(0);
    padding-top:40px;
  }

  .scroll{
    bottom:24px;
  }

  .scroll::after{
    height:28px;
    margin-top:8px;
  }
}

/* ICONE SOCIAL MOBILE */
.mobile-icons{
  display:none;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.mobile-icons a{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:white;
  text-decoration:none;
  box-shadow:0 14px 30px rgba(15,32,51,0.20);
  border:1px solid rgba(255,255,255,0.55);
  position:relative;
  overflow:hidden;
  transition:.25s ease;
}

.mobile-icons a::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(255,255,255,0.35),transparent 55%);
  pointer-events:none;
}

.mobile-icons a:hover{
  transform:translateY(-2px) scale(1.04);
}

.mobile-icons .whatsapp-btn{
  background:linear-gradient(135deg,#20d466,#078a43);
}

.mobile-icons .instagram-btn{
  background:radial-gradient(circle at 30% 110%,#feda75 0%,#fa7e1e 28%,#d62976 54%,#962fbf 76%,#4f5bd5 100%);
}

.mobile-icons svg{
  width:24px;
  height:24px;
  fill:currentColor;
  position:relative;
  z-index:1;
}

@media(max-width:980px){
  .mobile-icons{
    display:flex;
  }

  nav{
    justify-content:space-between;
  }

  nav .brand{
    order:1;
  }

  nav .mobile-icons{
    order:2;
  }

  .services-mosaic,
  .experience-services .card,
  .experience-services .card:nth-child(even){
    grid-template-columns:1fr;
  }

  .services-mosaic .card,
  .services-mosaic .card:nth-child(1),
  .services-mosaic .card:nth-child(2){
    grid-column:span 1;
  }

  .experience-services .card:nth-child(even) .card-img{
    order:0;
  }

  .experience-services .card-body,
  .experience-services .card:nth-child(even) .card-body{
    padding:8px 26px 26px;
  }

  .experience-services .card-img{
    height:260px;
    min-height:260px;
  }

  .boat-slider-head{
    justify-content:center;
    margin:0 0 16px;
  }

  .boat-track{
    grid-auto-columns:88%;
  }

  .boat-slide{
    display:block;
    min-height:auto;
  }

  .boat-slide .card-img{
    height:270px;
    min-height:270px;
  }

  .boat-slide .card-body{
    padding:8px 26px 26px;
  }
}

@media(max-width:620px){
  .mobile-icons{
    gap:10px;
  }

  .mobile-icons a{
    width:42px;
    height:42px;
  }

  nav .brand-logo{
    height:48px;
    max-width:190px;
  }

  .services-mosaic .card-img,
  .boat-slide .card-img{
    height:235px;
    min-height:235px;
  }

  .boat-track{
    grid-auto-columns:94%;
  }
}

/* === CMS custom additions === */
.card-img[style], .bg[style]{ background-size:cover; background-position:center; }
.admin-preview-note{display:none;}
.form-alert{margin-bottom:18px;padding:14px 16px;border-radius:16px;background:#e7f7f4;color:#0f766e;font-weight:800;border:1px solid rgba(15,118,110,.18)}
.form-alert.error{background:#fff4d8;color:#8a5e00;border-color:rgba(217,164,65,.35)}
input[type="checkbox"]{width:auto;margin:0 8px 0 0;}
/* rende le immagini dinamiche del CMS belle anche senza classi CSS */
.service-card .card-img, .boat-slide .card-img{background-size:cover;background-position:center;}
@media(max-width:620px){.hero .scroll{bottom:24px;}}
