/* Royal Amalfi Charter — styles2.css */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --c-blu:        #0F2846;
  --c-blu2:       #0F2846;
  --c-navy-hdr:   #0B203B;    /* rgb(11,32,59) */
  --c-navy-panel: #0C2340;    /* luxury-cruise intro bg */
  --c-navy-form:  #13294A;    /* form inputs */
  --c-azzurro:    #139FBF;
  --c-beige:      #F7F3EA;
  --c-beige2:     #EFECE7;
  --c-beigescuro: #82807E;
  --c-menu:       #C6CED8;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--c-blu2);
  font-size: 1.2rem;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif Display", serif;
  font-weight: 400;
}

a { text-decoration: none; color: var(--c-blu2); }
a:hover { color: var(--c-blu); }
em { font-style: italic; }

/* ===========================
   ANIMATIONS
   =========================== */
.animated * {
  animation-play-state: paused !important;
  animation-fill-mode: both !important;
}
.animated.show * { animation-play-state: running !important; }

.fade-in     { animation: fadeIn 2s; }
.fade-bottom { animation: fadeBottom 2s; }
.fade-left   { animation: fadeLeft 2s; }
.fade-right  { animation: fadeRight 2s; }
.fade-top    { animation: fadeTop 2s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeBottom {
  from { opacity: 0; transform: translateY(300px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-500px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(500px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeTop {
  from { opacity: 0; transform: translateY(-300px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
  .del-1  { animation-delay: 0.10s !important; }
  .del-2  { animation-delay: 0.20s !important; }
  .del-3  { animation-delay: 0.30s !important; }
  .del-4  { animation-delay: 0.40s !important; }
  .del-5  { animation-delay: 0.50s !important; }
  .del-6  { animation-delay: 0.60s !important; }
  .del-7  { animation-delay: 0.70s !important; }
  .del-8  { animation-delay: 0.80s !important; }
  .del-9  { animation-delay: 0.90s !important; }
}

/* ===========================
   ARROW LINK
   =========================== */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  transition: gap 0.3s;
}
.arrow-link:hover { gap: 1rem; }
.arrow-link svg { margin-left: 0.3rem; transition: margin-left 0.3s; }
.arrow-link:hover svg { margin-left: 0.7rem; }

/* ===========================
   SUBTITLE VARIANTS
   =========================== */

/* Default: plain colored text (used in luxury-yacht white, intro navy) */
.subtitle {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* Beige tag style (day-cruises, our-fleet, availability) */
.subtitle-tag {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--c-beige);
  color: var(--c-blu2);
  padding: 0.8rem 1rem;
  text-align: center;
  width: 280px;
  margin: 0 auto;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(11,32,59,1) 0%, rgba(11,32,59,0) 100%);
  z-index: 100;
  transition: height 0.5s, backdrop-filter 0.4s;
  pointer-events: none;
}
.site-header .header-inner { pointer-events: all; }
.site-header.stick {
  height: 89px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .navbar { background: transparent; padding: 0 !important; }
.site-header .navbar .container-fluid { padding: 0 !important; overflow: visible !important; }
.site-header.stick .navbar { background: rgba(11,32,59,0.6); }

.navbar-brand img { display: block; }
@media (max-width: 767.98px) {
  .navbar-brand img { width: auto; height: 41px; }
}
.navbar-brand { padding: 1rem 0.5rem; margin-left: 1rem; }

.nav-link-item {
  color: var(--c-menu) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
}
.nav-link-item:hover { color: #fff !important; }

.btn-nav-prenota {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.btn-nav-prenota:hover { background: #fff; color: var(--c-blu); }

/* Hamburger button */
.navbar-toggler {
  background: var(--c-blu);
  padding: 0;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  position: fixed;
  top: 0; right: 0;
  width: 112px;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.navbar-toggler:focus { box-shadow: none !important; outline: none; }

@media (max-width: 767.98px) {
  .navbar-toggler { width: 90px; height: 73px; }
}

@media (max-width: 1399px) {
  .navbar-collapse {
    background: linear-gradient(180deg, rgba(11,32,59,.9) 0%, rgba(11,32,59,.9) 100%);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0 5rem;
    max-height: calc(100vh - 73px);
    overflow-y: auto;
  }
  .nav-link-item {
    font-size: 1.2rem;
    padding: 1rem 1rem !important;
    text-align: center;
    display: block;
    border: none !important;
  }
  .btn-nav-prenota { display: inline-block; margin-top: 1rem; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--c-blu);
}
.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,32,59,0.15);
  z-index: 1;
}

/* "Get a quote" CTA */
.get-a-quote {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  z-index: 5;
  transition: transform 0.3s;
}
.get-a-quote:hover { transform: scale(1.2) rotate(-10deg); }
.get-a-quote a {
  background: var(--c-blu2);
  color: #fff;
  font-family: "Noto Serif Display", serif;
  font-size: 1.6rem;
  padding: 0.5rem 2.5rem 0.6rem;
  font-weight: 300;
  font-style: italic;
  display: block;
  transition: border-radius 0.3s, padding 0.3s, box-shadow 0.3s;
}
.get-a-quote a:hover {
  border-radius: 150px;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  color: #fff;
}

@media (max-width: 767px) {
  .get-a-quote {
    position: fixed;
    bottom: 49px !important;
    left: 0; right: 0;
    top: auto !important;
  }
  .get-a-quote a {
    font-size: 1.3rem;
    padding: 0.5rem 2rem 0.7rem;
    width: 100%;
    text-align: center;
  }
}

/* ===========================
   SIDEBAR CONTACTS (WHITE)
   =========================== */
.contacts-sidebar-cont {
  position: relative;
  z-index: 2;
}

.contacts-sidebar {
  position: absolute;
  right: 0;
  top: 89px;
  background: #fff;
  padding: 5px 0;
  width: 40px;
  overflow: hidden;
  transition: width 0.3s;
}

@media (min-width: 768px) {
  .contacts-sidebar:hover { width: 140px; }
}

.contacts-sidebar.stick {
  position: fixed;
  z-index: 100;
}

.contacts-sidebar ul {
  padding: 0;
  list-style: none;
  text-align: right;
  opacity: 0.3;
  transition: opacity 1s;
  margin: 0;
}
.contacts-sidebar:hover ul {
  opacity: 1;
  transition: opacity 0.3s;
}
.contacts-sidebar li {
  padding: 0.3rem;
  white-space: nowrap;
}
.contacts-sidebar li label {
  display: inline-block;
  line-height: 30px;
  height: 30px;
  vertical-align: middle;
  width: 0;
  overflow: hidden;
  transition: width 0.4s;
  font-size: 0.85rem;
  color: var(--c-blu2);
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}
@media (min-width: 768px) {
  .contacts-sidebar li:hover label { width: 100px; }
}
.contacts-sidebar li i {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .contacts-sidebar-cont {
    height: 0;
    overflow: visible;
  }
  .contacts-sidebar {
    position: fixed;
    right: 0; left: 0;
    bottom: 0;
    top: auto;
    padding: 0 5px;
    width: auto;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .contacts-sidebar.stick {
    transform: translateY(0);
  }
  .contacts-sidebar ul {
    display: flex;
    justify-content: center;
    opacity: 1;
  }
  .contacts-sidebar li { padding: 0.6rem; }
}

/* ===========================
   MAIN WRAPPER
   =========================== */
.main {
  position: relative;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

/* ===========================
   SECTION 1 — LUXURY YACHT
   (background image + dark overlay + white text + glassmorphism cards)
   =========================== */
.luxury-yacht {
  position: relative;
  width: 100%;
  background: url('images/luxury-yacht-2.jpg') center center;
  background-size: cover;
  text-align: center;
  padding: 7rem 2rem 6rem;
}
.luxury-yacht::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,32,59,.65) 0%, rgba(11,32,59,.25) 100%);
  z-index: 0;
}
.luxury-yacht > * { position: relative; z-index: 1; }
.luxury-yacht .container { position: relative; z-index: 1; }

.luxury-yacht .subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.luxury-yacht .intro-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.luxury-yacht p {
  color: #fff;
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Cruise choice glassmorphism cards */
.cruise-choice {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 4rem;
  flex-wrap: wrap;
}

.cruise-choice a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 300px;
  height: 320px;
  background: rgba(11,32,59,.3);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,.2) inset, 0 15px 30px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border 0.3s;
}

@media (min-width: 768px) {
  .cruise-choice a:hover {
    background: rgba(11,32,59,.75);
    transform: scale(1.12);
    z-index: 1;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 0 30px rgba(255,255,255,.2) inset, 0 30px 60px rgba(0,0,0,.7);
  }
  .cruise-choice a:hover .c-discover { transform: translateX(80px); }
}

.cruise-choice a strong {
  font-family: "Noto Serif Display", serif;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 350;
  line-height: 1;
  transition: text-shadow 0.3s;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
}
.cruise-choice a:hover strong { text-shadow: 0 0 20px rgba(255,255,255,.7); }

.cruise-choice a small {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 0.12em;
  display: block;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 0.3rem;
  color: rgba(255,255,255,.75);
}

.c-discover {
  margin-top: 2rem;
  padding: 1rem 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.c-discover svg * { stroke: #fff; }

/* Background image per card on hover (optional — shows image if provided) */
.cruise-choice a .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.cruise-choice a:hover .card-bg { opacity: 0.35; }

@media (max-width: 767px) {
  .cruise-choice a { width: calc(50% - 0.75rem); height: 220px; }
  .cruise-choice a strong { font-size: 1.8rem; }
  .c-discover { display: none; }
}

/* ===========================
   SECTION 2 — INTRO / CHI SIAMO
   (plain white, large navy title)
   =========================== */
.intro-section {
  text-align: center;
  padding: 8rem 2rem 6rem;
}

@media (max-width: 767px) {
  .intro-section { padding: 4rem 1.5rem 3rem; }
}

.intro-section .subtitle {
  color: var(--c-blu2);
  margin-bottom: 1.5rem;
}

.intro-section .intro-title {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--c-blu);
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
  margin: 0 auto 0.5rem;
  max-width: 900px;
}

.intro-section p {
  max-width: 740px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro-section .arrow-link {
  font-size: 1.1rem;
  margin: 2rem auto 0;
  display: inline-flex;
}

/* ===========================
   HIGHLIGHTS (5-col staggered grid)
   =========================== */
.highlights {
  overflow: hidden;
}
.highlights .row > .col { position: relative; }
.highlights .col:hover { z-index: 10; }

.highlight {
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
@media (min-width: 768px) {
  .highlight:hover {
    transform: scale(1.35);
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
    z-index: 10;
    position: relative;
  }
}
.highlight video,
.highlight img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .highlights { display: none; }
}

/* ===========================
   SECTION 3 — DAY CRUISES
   (white background, large italic title, 3D flip cards)
   =========================== */
.day-cruises {
  text-align: center;
  padding: 8rem 2rem 6rem;
}

@media (max-width: 767px) {
  .day-cruises { padding: 4rem 1rem 3rem; }
}

.day-cruises .subtitle-tag {
  width: 280px;
  margin: 0 auto -1rem;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .day-cruises .subtitle-tag { background: transparent; color: var(--c-blu2); margin-bottom: 0; }
}

.day-cruises .day-cruises-title {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--c-blu);
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
  margin: 0 auto 0.5rem;
}

.day-cruises > p,
.day-cruises .section-desc {
  max-width: 920px;
  margin: 0 auto 4rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* 3D Flip Card */
.day-cruise-box {
  background-color: transparent;
  width: 100%;
  height: 600px;
  perspective: 1000px;
  margin-top: 1rem;
  cursor: pointer;
}

@media (max-width: 1399px) { .day-cruise-box { height: 640px; } }
@media (max-width: 767px)  { .day-cruise-box { height: 480px; } }
@media (max-width: 500px)  { .day-cruise-box { height: 380px; } }

.day-cruise-box:hover { position: relative; z-index: 1; }

.day-cruise-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
@media (min-width: 768px) {
  .day-cruise-box:hover .day-cruise-box-inner { transform: rotateY(180deg); }
}

/* FRONT face */
.day-cruise-box-cover,
.day-cruise-box-info {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.day-cruise-box-cover {
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.day-cruise-photo {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  flex: 1;
}
.day-cruise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.day-cruise-photo span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(11,32,59,1) 0%, rgba(11,32,59,0) 100%);
  padding: 130px 1.4rem 1rem;
  color: #fff;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.day-cruise-photo span svg * { stroke: #fff; }

.day-cruise-title {
  display: block;
  font-family: "Noto Serif Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  padding: 1.2rem 1rem;
  color: var(--c-blu);
  line-height: 1.1;
  width: 100%;
  background: #fff;
}

/* BACK face (dark navy, white text) */
.day-cruise-box-info {
  background: var(--c-blu2);
  color: #fff;
  transform: rotateY(180deg);
  overflow: hidden;
}

.day-cruise-box-info .back-content {
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 1.5rem 1.5rem 8rem;
  margin: 0;
  overflow-y: auto;
}

.day-cruise-box-info .back-content strong {
  line-height: 1.15;
  font-size: 1.7rem;
  display: block;
  margin: 0.5rem 0 0.8rem;
  font-weight: 400;
  font-family: "Noto Serif Display", serif;
  font-style: italic;
}

.day-cruise-box-info .tour-meta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-azzurro);
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.day-cruise-box-info ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  text-align: left;
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
}
.day-cruise-box-info ul li { padding: 0.2rem 0; }
.day-cruise-box-info ul li::before { content: '— '; color: var(--c-azzurro); }

.day-cruise-box-info a.back-cta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(11,32,59,1) 0%, rgba(11,32,59,0) 100%);
  padding: 100px 1.4rem 1rem;
  color: #fff;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.5rem;
  z-index: 1;
}
.day-cruise-box-info a.back-cta:hover { color: #fff; }
.day-cruise-box-info a.back-cta svg * { stroke: #fff; }

/* Back face image (mirrored) */
.day-cruise-box-info .back-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  opacity: 0.15;
}

/* ===========================
   SECTION 4 — OUR FLEET
   (background image, white text, gallery)
   =========================== */
.our-fleet {
  text-align: center;
  padding: 0;
  background: url('images/itama73.jpg') center top no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 800px;
  position: relative;
  margin: 3rem auto 0;
}

.our-fleet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,32,59,0.6);
}
.our-fleet > * { position: relative; z-index: 1; }

.our-fleet .subtitle-tag {
  transform: translateY(-20px);
  margin: 0 auto 3rem;
}

.our-fleet .our-fleet-title {
  font-size: clamp(2.5rem, 5vw, 6rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 400;
  font-style: italic;
  margin: 0 auto 0.5rem;
  padding: 0 1rem;
}

.our-fleet > p,
.our-fleet .fleet-desc {
  max-width: 920px;
  margin: 0 auto 3rem;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
  padding: 0 1.5rem;
}

/* Fleet gallery (Itama 38) */
.fleet-showcase {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  text-align: left;
  flex-wrap: wrap;
}

.fleet-gallery-col {
  flex: 1.2;
  min-width: 280px;
}
.fleet-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transition: opacity 0.4s;
}
.fleet-thumbs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0.6rem 0;
}
.fleet-thumb {
  width: 80px;
  height: 54px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}
.fleet-thumb.active,
.fleet-thumb:hover { opacity: 1; border-color: #fff; }

.fleet-info-col {
  flex: 1;
  min-width: 260px;
  color: #fff;
  padding: 1rem 0;
}
.fleet-info-col h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #fff;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.fleet-info-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}
.fleet-incluso-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 1.8rem 0 0.4rem;
}

.fleet-specs {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 1rem;
  margin: 0 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
}
.btn-fleet {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--c-azzurro);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
.btn-fleet:hover { background: var(--c-blu); color: #fff; box-shadow: 0 15px 30px rgba(0,0,0,.4); }
.btn-fleet svg * { stroke: #fff; }

/* ===========================
   SECTION 5 — AVAILABILITY FORM
   (gradient + beige tag subtitle)
   =========================== */
.availability {
  margin: 0;
  text-align: center;
  position: relative;
  padding: 3rem 0 0;
}

.availability .avail-inner {
  background: linear-gradient(90deg,
    rgba(23,61,106,1) 0%,
    rgba(15,40,70,1)  49.9%,
    rgba(23,61,106,1) 50%,
    rgba(15,40,70,1)  100%);
  max-width: 100%;
  position: relative;
  z-index: 3;
  padding: 0 2rem 5rem;
}

.availability .subtitle-tag {
  transform: translateY(-20px);
  margin: 0 auto 0;
}

.availability .availability-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: #fff;
  line-height: 1.15;
  font-weight: 300;
  margin: 1.5rem 0 2rem;
  font-style: italic;
}
.availability .availability-title em { color: var(--c-azzurro); }

/* Contact info grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}
.contact-item label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-azzurro);
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  cursor: auto;
}
.contact-item p { font-size: 0.95rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.6; }
.contact-item a { color: rgba(255,255,255,.75); transition: color 0.3s; }
.contact-item a:hover { color: #fff; }

/* Form controls */
.availability .form-floating .form-control,
.availability .form-floating .form-select {
  background: var(--c-navy-form);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}
.availability .form-floating > label { color: rgba(255,255,255,.7); }
.availability .form-control:focus,
.availability .form-select:focus {
  color: #fff;
  background: var(--c-navy-form);
  border-color: var(--c-azzurro);
  box-shadow: none;
}
.availability .form-control option,
.availability .form-select option {
  background: var(--c-navy-panel);
  color: #fff;
}
.availability .form-control::-webkit-calendar-picker-indicator { filter: invert(1); }
.availability .form-floating > .form-control:focus ~ label,
.availability .form-floating > .form-control:not(:placeholder-shown) ~ label,
.availability .form-floating > .form-select ~ label { opacity: 1; }

/* Submit button (teal) */
.btn-submit {
  background: var(--c-azzurro);
  color: #fff;
  border: none;
  padding: 1.1rem 3rem;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
  transition: background 0.3s, box-shadow 0.3s;
  margin-bottom: 1rem;
}
.btn-submit:hover { background: var(--c-blu); box-shadow: 0 15px 30px rgba(0,0,0,.5); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--c-navy-hdr);
  color: rgba(255,255,255,.45);
  padding: 4rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-brand {
  font-family: "Noto Serif Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
  display: block;
  font-style: italic;
}
.footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: rgba(255,255,255,.45); font-size: 0.88rem; transition: color 0.3s; }
.footer ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}
.social-links { display: flex; gap: 1rem; margin-top: 1.2rem; }
.social-links a { color: rgba(255,255,255,.35); transition: color 0.3s; display: flex; align-items: center; }
.social-links a:hover { color: #fff; }
