/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --active-color: #889fd0;
  --blue-ncc: #062767;
  --text-color: #f4f4f4;
  --dark: #030f26;
  --border: rgba(255, 255, 255, 0.2);
  --wa: #25D366;
}

::selection {
  background-color: rgba(126, 126, 126, 0.5);
  color: inherit;
}


html {
  scroll-behavior: smooth;
}

body {
  font-weight: 300;
  background: var(--dark);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

b {
  font-weight: 500;
}

.parallax {
  position: relative;
  min-height: 100vh;
  clip-path: inset(0);
  background-size: cover;
  background-image: linear-gradient(to bottom,  
  #030f26 50%, 
  #062767 100%);
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.text-yellow {
  color: #eaca1d;
}
.mobile-border{
  border: none;
}
@media (max-width: 768px) {
  .mobile-border {
    border: 1px solid var(--active-color);
  }
}
@media (max-width: 1024px) {
  .parallax {
    background-attachment: scroll;
  }
}

small {
  font-size: 10px;
  color: var(--text-color);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.opacity-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,   
  rgba(13, 38, 80, 0.4) 0%,  
  rgba(3, 15, 38, 0.4) 75%,
  rgb(3, 15, 38) 100%);
}

a {
  text-decoration: none;
  color: var(--active-color);
}

.text-active {
  color: var(--active-color) !important;
}

.bg-active {
  background-color: var(--active-color) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}

.bg-transparent {
  background: rgba(255, 255, 255, 0.20) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background-color: #fff !important;
  color: var(--blue-ncc) !important;
  border-color: var(--border) !important;
  border-radius: 1rem !important;
}
.btn-primary:hover {
  background-color: #fff !important;
  color: var(--blue-ncc) !important;
  border-color: var(--active-color) !important;
}


.border-bottom {
  border-bottom: 1px solid var(--border) !important;
}

.btn-ncc {
  background-color: var(--active-color) !important;
  color: #fff !important;
}
.btn-ncc:hover {
  background-color: #2d477d !important;
  color: #fff !important;
}

.separator {
  background-color: var(--border);
  margin: 30px 0;
  height: 1px;
  
}

/* ── TYPOGRAPHY SHARED ── */
.kicker {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--active-color);
  display: block;
}

h2.sec-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

h3.sec-title {
  font-weight: 400;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h2.sec-title {
    font-size: 32px;
  }
  h3.sec-title {
    font-size: 24px;
  }
}

.sec-title-dark {
  color: #fff;
}

.sec-body {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.5;
  font-weight: 300;
  a {
    color: var(--active-color) !important;
  }
}

.sec-body strong {
  font-weight: 600;
}

.link-ncc {
  font-size: 18px;
  color: var(--active-color);
  text-decoration: none;
  transition: color 0.2s;
}

.link-ncc:hover {
  color: var(--active-color);
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════
   NAV
════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}
 
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 50px;
  max-width: 1320px;
  margin: 10px auto;
  height: 75px;
}
@media (max-width: 1400px) {
  .nav-inner {
    padding: 16px 10px;
    margin: 10px;
  }
}
@media (max-width: 768px) {
  .nav-inner {
    padding: 16px;

  }
}
 
.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text-color);
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  position: relative;
  z-index: 210;
}
 
.logo-text {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-color);
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
}
.logo-text strong {
  font-weight: 400;
}
 
/* ── HAMBURGER ── */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 210;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--text-color); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); background: var(--text-color); }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--text-color); }
 
/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 39, 103, 0.5) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 150;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 10px;
  transform: translateX(100%);
  opacity: 0;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  pointer-events: none;
}

.drawer-inner {
  display: flex;
  max-width: 650px;
  margin: 0 auto;
  flex-direction: column;
  gap: 20px;
}


.nav-drawer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
 
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer-link {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
  text-transform: uppercase;
}
.drawer-link:hover, .drawer-sublink:hover, .drawer-link.active { color: var(--text-color); }
 
.drawer-border-bottom {
  border-bottom: 1px solid var(--border);
}
.drawer-trigger { 
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-trigger-icon {
  color: #fff;
  transition: transform 0.3s ease;
}

.drawer-item .drawer-sublinks {
  margin-left: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  visibility: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    margin-bottom 0.45s ease,
    visibility 0.45s;
}
.drawer-item.is-expanded .drawer-sublinks {
  max-height: 280px;
  opacity: 1;
  margin-bottom: 12px;
  visibility: visible;
}
.drawer-sublink {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}

.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.drawer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  gap: 5px;
  background: var(--wa);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 0;
  text-decoration: none;
}
.drawer-wa i { font-size: 22px; }
.btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 0;
  background-color: var(--blue-ncc);
  border-radius: 10px;
}
.btn-tel i { margin-right: 6px; }
.btn-tel:hover { border-color: var(--blue-ncc); color: #fff; }
 
/* ── DESKTOP NAV ── */
.nav-links { display: none; }
.nav-cta-mobile { display: none; }

.btn-book.btn-menu-bar { 
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
}
 
@media (min-width: 900px) {
 
  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgb(255 255 255);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
  }
  .nav-links a:hover { color: #fff; }

  /* Dropdown Servizi (desktop) */
  .nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }
  /* Collega hover trigger ↔ pannello (evita chiusure nel gap) */
  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
  .nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-dropdown-trigger::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.45;
    margin-top: 2px;
  }
  .nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    min-width: 220px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 220;
    background: rgba(255, 255, 255, 0.40) !important;
  }
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown:hover .nav-dropdown-trigger,
  .nav-dropdown:focus-within .nav-dropdown-trigger {
    color: #fff;
  }
  .nav-submenu .nav-sublink {
    display: block;
    padding: 10px 18px;
    margin: 0 10px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-submenu .nav-sublink:hover,
  .nav-submenu .nav-sublink:focus {
    color: var(--blue-ncc);
    background: var(--dark);
    outline: none;
  }
  .nav-submenu .nav-sublink:hover,
  .nav-submenu .nav-sublink:focus,
  .link-highlight {
    color: #fff;
    background: rgba(3, 37, 98, 0.85);
    outline: none;
  }

  
}
.nav-lang a {
  color: rgb(255 255 255);

}


/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  background-image: url('/images/ncc-verona.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-inner {
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;  
  background: linear-gradient(to bottom,   
  rgba(3, 15, 38, 0.4)  0%,
  rgba(13, 38, 80, 0.4) 75%,  
  rgb(13, 38, 80) 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title{
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 53px;
  line-height: 1;
  font-style: normal;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 768px) {
  .hero-inner {
    justify-content: flex-start;
    padding-top: 100px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-title em {
    font-size: 30px;
  }
}

@media (max-width: 365px) {
  .hero-title {
    font-size: 30px;
  }

}

.hero-label {
  font-size: 14px;
  color: var(--text-color);
  background-color: var(--border);
  backdrop-filter: blur(5px);
  padding: 3px 6px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  display: block;
  border-radius: 10px;
}

.hero-text {
  font-size: 14px;
  margin-top: 15px;
  color: var(--text-color);

  text-align: center;
  display: block;
  text-transform: uppercase;
  border-radius: 10px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-img-title {
  width: 400px; 
  height: auto;
}
@media (max-width: 768px) {
  .hero-img-title {
    width: 300px;
  }
}

.hero-cards-container {
  position: absolute;
  bottom: 50px; 
  left: 50%; 
  transform: translateX(-50%); 
  overflow: hidden;
  width: 100%;
}
.hero-cards{
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: visible;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hero-cards::-webkit-scrollbar,
.hero-cards::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hero-cards{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.hero-card {
  width: 18%;
  flex: 0 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.hero-card.bg-transparent{
  background: rgba(6, 39, 103, 0.2) !important;
}

.hero-card.bg-transparent:hover {
  background: rgba(255, 255, 255, 0.02) !important;
}
#all-destinations {
  background: rgba(255, 255, 255, 0.05) !important;
  .hero-card-service {
    color: var(--active-color) !important;
  }
}
#all-destinations:hover {
  background: rgba(255, 255, 255, 0.02) !important;
}

.hero-card .card-body {
  padding: 1rem;
}

.hero-card-service {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
}

@media (max-width: 1400px) and (min-width: 768px) {
  .hero-cards-container{
    bottom: 3%;
  }
  .hero-card {
    width: 210px;
  }
  .hero-card-service {
    font-size: 16px
  }
  .hero-card .card-body {
    padding: 0.6rem;
  }
}

@media (max-width: 768px) {
  .hero-cards-container {
    width: 100%;
    left: 0;
    transform: none;
    padding: 0 16px;
    bottom: 14%; 
  }
  .hero-cards {
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .hero-card {
    width: 250px;
  }
  .hero-card .card-body {
    padding: 0.5rem !important;
  }
  
  .hero-card-service {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-cards-container {
    bottom: 12%; 
  }
}

/* ── BUTTONS ── */
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--wa);
  border-radius: 10px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 14px 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-wa:hover {
  opacity: 0.88;
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.btn-tel-home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 10px;
  color: #ffffff;
  background-color:  rgba(16, 48, 100, 1);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: all 0.3s;
}

.btn-tel-home:hover {
  background-color:  rgba(16, 48, 100, 0.8);
  color: #ffffff;
}

.book-btn-container { 
  margin-top: 100px; 
} 
@media (max-width: 1400px) and (min-width: 768px) {
  .book-btn-container {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .book-btn-container {
    margin-top: 20px;
  }
}

.btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  color: #ffffff;
  background-color:  rgba(16, 48, 100, 0.8);
  backdrop-filter: blur(5px);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px;
  transition: all 0.3s;
  width: auto;
}

.btn-book.btn-book-menu {
  background-color: var(--blue-ncc);
}
.btn-book.btn-book-menu:hover {
  background-color: var(--blue-ncc);
}

.btn-book:hover {
  background-color:  rgba(16, 48, 100, 0.6);
  color: #ffffff;
}

@media (max-width: 768px) {
  .btn-book {
    width: 100%;
    font-size: 16px;
  }
}



/* ════════════════════════════
   CHI SIAMO
════════════════════════════ */
@media (min-width: 900px) {


  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
}


/* ════════════════════════════
   FEATURES
════════════════════════════ */

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.feat-item:last-child {
  border-bottom: none;
}

.feat-n {

  font-size: 25px;
  color: var(--active-color);
  font-weight: 300;
  min-width: 40px;
  padding-top: 1px;
  text-align: center;
}

.feat-name {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.feat-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.65;
}

@media (min-width: 900px) {
  .feats {
    padding: 120px 0;
  }

  .feats-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .feats-header .sec-body {
    max-width: 380px;
    padding-bottom: 6px;
  }

  .feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
    margin-top: 56px;
  }

  .feat-grid .feat-item {
    padding: 24px 0;
  }
}


/* ════════════════════════════
   TARIFFE
════════════════════════════ */


.price-list {
  margin-top: 32px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.price-dest {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
}
.price-dest a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}
.price-dest a:hover {
  color: var(--active-color);
}
.price-val {
  font-size: 20px;
  color: var(--active-color);
  font-weight: 300;
  white-space: nowrap;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .price-val {
    font-size: 18px;
  }
}
.price-val small {
  font-size: 12px;
  font-weight: 300;
  color: var(--active-color);
  text-transform: none;
}

.price-note {
  font-size: 11px;
  color: #c0c0c0;
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.06em;
}

.book-link {
  font-size: 14px;
  background-color: var(--active-color) !important;
  color: #fff !important; 
  padding: 1px 5px;
  border-radius: 5px;
  text-decoration: none;
  transition: color 0.2s;
}

@media (max-width: 768px) {
  .book-link {
    font-size: 10px;
  }
}

@media (min-width: 900px) {

  .tariffe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 100px;
    align-items: start;
  }

  .tariffe-left .sec-body {
    margin-top: 16px;
    max-width: 340px;
  }

  .price-list {
    margin-top: 0;
  }
}


/* ════════════════════════════
   SERVIZI
════════════════════════════ */
.servizi {
  background: var(--dark);
}

.svc-list {
  margin-top: 32px;
}

.svc-item {
  padding: 22px 0;
  border-bottom: 1px solid #E2E2E2;
}

.svc-item:last-child {
  border-bottom: none;
}

.svc-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: 0.03em;
  margin-bottom: 7px;
}

.svc-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.5;
}

@media (min-width: 900px) {

  .servizi-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 56px;
  }

  .svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
  }

  .svc-grid .svc-list {
    margin-top: 0;
  } 
}

/* ════════════════════════════
   FAQ
════════════════════════════ */
.accordion-ncc .accordion-item, .accordion-ncc{background-color: transparent; border-radius: 0; margin-bottom: 1rem;}
.accordion-ncc .accordion-item {border: none; border-radius: 0; border-bottom: 1px solid var(--border); }
.accordion-ncc .accordion-button {color: #fff; background-color: transparent; border-radius: 0; font-weight: 400; font-size: 20px; padding: 10px 0;}
.accordion-ncc .accordion-button::after  {background-image: url('/images/minus-icon.svg'); background-size: 1.5rem; background-position: center; background-repeat: no-repeat;}    
.accordion-ncc .accordion-button.collapsed::after {background-image: url('/images/plus-icon.svg'); background-size: 1.5rem; background-position: center; background-repeat: no-repeat;}
.accordion-ncc .accordion-button:hover {background-color: transparent; color: #fff;}
.accordion-ncc .accordion-body{ font-size: 18px; font-weight: 300; color: var(--text-color); line-height: 1.5; padding: 0 0 10px 0;}
.accordion-ncc .accordion-item:first-of-type>.accordion-header .accordion-button { border-top-left-radius: 0; border-top-right-radius: 0;}
.accordion-ncc .accordion-item:last-of-type>.accordion-header .accordion-button { border-bottom-left-radius: 0; border-bottom-right-radius: 0;}   
.accordion-ncc .accordion-button:not(.collapsed), .accordion-ncc .accordion-button:focus {color: #fff; background-color: transparent;box-shadow: none;}

/* ════════════════════════════
   CTA FINALE
════════════════════════════ */
.cta-home-sec, .cta-sec {
  background-image: url('/images/ncc-verona-aeroporto-centro.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.cta-home-sec{
  padding: 100px 0;
}

.cta-sec {
  padding: 70px 0;
}

.cta-home-sec .kicker {
  color: var(--active-color);
}

.cta-home-sec .sec-body, .cta-sec .sec-body {
  color: #ffffff;
  margin-bottom: 40px;
}

.cta-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 900px) {
  .cta-home-sec {
    padding: 160px 0;
  }
}



/* ════════════════════════════
   STICKY WA BAR — mobile only
════════════════════════════ */
.wa-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  z-index: 90;
  background: linear-gradient(to bottom,
	transparent,
  rgb(16, 48, 100) 70%);
}

.wa-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--wa);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.wa-bar-btn:hover {
  opacity: 0.88;
}
.wa-bar-btn i { font-size: 22px; }

.wa-bar-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.wa-bar-tel {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  white-space: nowrap;
  text-decoration: none;
}

.wa-bar-tel:hover {
  color: var(--text-color);
}

@media (min-width: 900px) {
  .wa-bar {
    display: none;
  }
}

.wa-bar-tel {
  text-align: center;
  padding: 14px;
  width: 100%;
  border: 1px solid var(--text-color);
}
.wa-bar-tel-link {
  color: var(--text-color);
}
.wa-bar-tel-link:hover {
  color: var(--text-color);
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: var(--dark);
  padding-bottom: 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 4px;
}

.footer-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.footer-info {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 2;
}

.footer-info a {
  color: var(--active-color);
  text-decoration: none;
}

.footer-link-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--active-color);
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin-top: 20px;
  padding-top: 30px;
  border-top: none;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-info-item i {
  font-size: 24px;
  color: var(--active-color);
}

.footer-info-item span {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
}

.footer-col {
  width: 20%;
  border-right: 1px solid var(--border);
  padding: 0 2rem;
  margin-bottom: 0;

}

.footer-nav-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-color);
}

.footer-nav-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}

.footer-nav-links div {
  padding-left: 10px;
  border-left: 3px solid var(--active-color);
}

#logo-footer {
  width: 80%; 
  height: auto;
}
@media (max-width: 900px) {
  #logo-footer {
    width: 200px; 
  }
  .footer-col {
    width: 100%;
    border-right: none;
    padding: 0;
    margin-bottom: 30px;
  }
}

.logo-text-footer {
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}




/* ════════════════════════════
   INTRO SECTION
════════════════════════════ */
.intro-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 40svh;
}
@media (max-width: 1400px) and (min-width: 768px) {
  .intro-section {
    height: 55svh;
  }
}

.intro-title {
  font-size: 48px;
  line-height: 1.0;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .intro-section {
    height: 50svh;
  }
  .intro-title {
    font-size: 38px;
  }
}


.breadcrumb-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-link:hover {
  color: var(--text-color);
}
.breadcrumb-link.active {
  color: var(--text-color);
}
.breadcrumb-item+.breadcrumb-item::before {
  content: '|';
  margin-right: 10px;
}

.breadcrumb-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ════════════════════════════
   DETAILS
════════════════════════════ */
.detail-icon {

  font-size: 36px;
  color: var(--active-color);
  font-weight: 300;
  min-width: 40px;
  padding-top: 1px;
  text-align: center;
}

.detail-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.detail-value {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.2;
}


/* ════════════════════════════
   DESTINATIONS LIST
════════════════════════════ */

.list-title {
  font-size: 1.5rem;
}

.destinations-list { list-style: none; margin: 0; padding: 0;}
.destinations-list li { padding-left: 0px; line-height: 30px; margin-bottom: 10px}
.destinations-list li a { text-decoration: none; transition: color 0.2s; background-color: var(--active-color); border-radius: 5px; color: #fff;}


.blockquote {
  border-left: 5px solid var(--active-color);
  background-color: var(--dark);
  border-radius: 10px;
  font-style: italic;
  font-size: 20px;
  color: var(--text-color);
  line-height: 1.5;
  padding: 30px 20px;
  transition: all 0.3s ease;
}
.blockquote:hover {
  transform: scale(1.02);
}

/* ════════════════════════════
   SERVICES
════════════════════════════ */
.service-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction:column;
  padding: 20px;
  height: 100%;
  position: relative;
  padding-top: 40px;
  border-radius: 20px;
  background-color: var(--dark);
}
.service-icon {
  font-size: 24px;
  color: var(--active-color);
  /* border: 1px solid var(--active-color); */
  border-radius: 50%;
  padding: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  box-shadow: 0 0 3px 3px rgba(136, 159, 280, 0.8);
}
.service-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 7px;
}
.service-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.5;
}


/* ════════════════════════════
   DESTINATIONS
════════════════════════════ */
.destination-card-container {
  overflow: hidden;
  height: 350px;
  position: relative;
}
.destination-card {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.destination-card .opacity-bg {
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.destination-title {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  line-height: 1.2;
}
.destination-card:hover {
  transform: scale(1.05);
}
.destination-card:hover .opacity-bg {
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .destination-card-container {
    height: 250px;
  }
  .destination-card .opacity-bg {
    background: rgba(0, 0, 0, 0.5);
  }
}

/* ════════════════════════════
   NCC LIST
════════════════════════════ */
.ncc-list {list-style: none; margin: 0; padding: 0;}
.ncc-list li {position: relative; padding: 0 0 0 7px; margin: 0 0 20px 10px; border-left: 3px solid var(--active-color);}
.ncc-list li a {color: var(--active-color);}
.ncc-list li:last-child {border-bottom: 0;}


/* ════════════════════════════
   CONTACT FORM
════════════════════════════ */

/* ════════════════════════════
   BOOKING FORM
════════════════════════════ */
#booking-form, .contact-form  {
  background-color: var(--dark);
  padding: 20px;
  border-radius: 20px;
}

label {
  color: var(--blue-ncc) !important;
  font-size: 16px !important;
}
#privacy-label {
  color: var(--text-color) !important;
}
input, select, textarea {
  border-color: var(--border) !important;
  border-radius: 1rem !important;
  font-size: 16px !important;
}

select {
  padding: 1rem .75rem
}
input[type="date"]::-webkit-calendar-picker-indicator {
  width: 22px;
  height: 22px;
  cursor: pointer;
  opacity: 0.7;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  width: 22px;
  height: 22px;
  cursor: pointer;
  opacity: 0.7;
}


.form-control:focus, .form-select:focus  {
  box-shadow: 0 0 0 .2rem var(--active-color) !important;
}

#booking-form-result .form-floating>.form-control {
  height: inherit!important;
}

.booking-form-btn {
  background-color: var(--blue-ncc) !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  padding: 15px !important;
  border-radius: 10px !important;
  border: none !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-form-result-container {
  padding: 15px 0;
  border-top: 1px solid var(--border);
  color: var(--active-color);

}


#estimated-price, #estimated-distance, #estimated-time {
  font-weight: 500;
  color: #fff;
}

.booking-form-result-duration, 
.booking-form-result-distance {

  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

.switch{
  width: 100% !important;
  height: 100% !important;
  min-height: 40px;
}
.switch-on, .switch-off {
  top: 10px !important;
} 

.switch-handle {
  width: 120px !important;
  border-radius: 1rem !important;
  background-color: var(--blue-ncc) !important;
  position: relative;
}

.switch-handle::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  width: 30px;
  height: 30px;
  background-image: url('/images/plus-icon.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.switch-handle::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  width: 20px;
  height: 20px;
  background-image: url('/images/minus-icon.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

label.switch-on,  label.switch-off {
  color: var(--blue-ncc) !important;
}
.place-autocomplete-wrap {
  position: relative;
}

.place-autocomplete-list {
  display: none;
  position: absolute;
  z-index: 1050;
  top: 100%;
  left: 0;
  right: 0;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background-color: var(--dark);
}

.place-autocomplete-list.is-open {
  display: block;
}

.place-autocomplete-item {
  padding: 0.65rem 0.85rem;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}

.place-autocomplete-item:last-child {
  border-bottom: none;
}

.place-autocomplete-item:hover,
.place-autocomplete-item:focus {
  background: var(--blue-ncc);
}

.booking-form-result-price{
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .switch{
    height: 50px !important;
  }
  .switch-on, .switch-off {
    top: 5px !important;
  } 
}



/* ════════════════════════════
   BLOG
════════════════════════════ */

.blog-card {
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: var(--dark);
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}
.blog-card-image-container{
  height: 250px;
  overflow: hidden;
}
.blog-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;

}
.blog-card-content {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  height: 180px;
}
.blog-card-title {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 400;
}
.blog-card-description {
  color: var(--text-color);
}
@media (max-width: 768px) {
  .blog-card-image-container {
    height: 200px;
  }
  .blog-card-content {
    height: auto;
  }
}



/* ════════════════════════════
   MORE NEWS
════════════════════════════ */
.last-news-image {
  width:  70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.last-news-title {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.5;
  padding-bottom: 5px;
  margin-top: 10px;
  border-bottom: 1px solid var(--border);
  display: block;
  text-decoration: none;
}
.last-news-title:hover {
  color: var(--active-color);
}

/* ════════════════════════════
   RECENSIONI
════════════════════════════ */
.google-reviews {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.reviews-slider {
  width: 100%;
  max-width: 100%;
}

.reviews-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  flex-direction: row;
  transition: transform 0.55s ease;
  will-change: transform;
}

.reviews-slider-track.is-resetting {
  transition: none;
}


.review-slide {
  flex: 0 0 100%;
  min-width: 90%;
  box-sizing: border-box;
}

.review-card {
  background-color: var(--dark);
  border: 1px solid var(--active-color);
  padding: 20px;
  margin: 0 10px 0 0;
  border-radius: 20px;
  color: var(--text-color);
}

.review-author {
  color: var(--active-color);
  font-size: 16px;
}

.review-stars {
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 18px;
  color: var(--text-color);
}

.review-label-container, .btn-view-all {
  position: absolute;
  bottom: -15px;
  right: 0px;
}

.btn-view-all {
  background-color: var(--active-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.review-label {
  font-size: 12px;
  color: var(--text-color);
  background-color: var(--active-color);
  border-radius: 5px;
  display: inline-block;
  padding: 5px 10px;
}
.review-label strong {
  color: #fff;
  font-weight: 400;
}

@media (max-width: 768px) {
  .btn-view-all {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 10px;
    text-align: center;
    display: inline-block;
  }
  #cookiescript_badge {
    left: -20px !important;
    rotate: 90deg !important;
    bottom: 30% !important;
  }
}
