/*
 * NavigaRent — Pagina Tour
 * Stesso stile della home: Cormorant + Montserrat, navy/teal
 * @package NavigaRent
 */

/* ============================================
   HERO
   ============================================ */
.nr-tour-page { font-family: var(--nr-body); color: var(--nr-text); }

.nr-tour-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--nr-navy) 0%, var(--nr-navy-deep) 100%);
    padding: 130px 20px 70px;
    text-align: center;
}

.nr-tour-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(63,169,201,.18), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.04), transparent 40%);
    pointer-events: none;
}

.nrf-hero__bg {position: absolute; inset: 0; z-index: 0;}
.nrf-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block;}
.nrf-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* 0.45 = 45% di nero */
}

.nr-tour-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    color: #fff;
}

.nr-tour-hero__inner h1 {
    font-family: var(--nr-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: .96;
    font-weight: 600;
    color: #fff;
    margin: 14px 0 18px;
    letter-spacing: -.02em;
}

.nr-tour-hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.82);
    font-weight: 400;
    margin: 0 0 36px;
    line-height: 1.6;
}

.nr-tour-hero__cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.nr-tour-hero__trust {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.nr-tour-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
}

.nr-tour-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--nr-teal);
    flex-shrink: 0;
}

/* Pulsanti hero */
.nr-tour-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nr-teal), var(--nr-teal-dark));
    color: #fff;
    font-family: var(--nr-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(63,169,201,.30);
    transition: transform .22s ease, filter .22s ease;
}

.nr-tour-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }

.nr-tour-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-family: var(--nr-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: background .22s ease, transform .22s ease;
}

.nr-tour-btn-secondary:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ============================================
   BOAT HIGHLIGHT BOX
   ============================================ */
.nr-boat-highlight {
    max-width: 1200px;
    margin: -28px auto 52px;
    padding: 24px 36px;
    background: #fff;
    border-radius: var(--nr-radius);
    box-shadow: var(--nr-shadow);
    border-left: 5px solid var(--nr-teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 4;
}

.nr-boat-highlight h3 {
    font-family: var(--nr-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nr-navy);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nr-boat-highlight p {
    font-size: 14px;
    color: var(--nr-muted);
    margin: 0;
    line-height: 1.7;
    max-width: 680px;
}

.nr-boat-highlight__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1.5px solid var(--nr-navy);
    color: var(--nr-navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background .22s ease, color .22s ease;
}

.nr-boat-highlight__cta:hover { background: var(--nr-navy); color: #fff; }

/* ============================================
   TOUR DETAIL CARDS
   ============================================ */
.nr-tour-cards-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.nr-tour-detail {
    background: #fff;
    border-radius: var(--nr-radius);
    box-shadow: var(--nr-shadow-soft);
    border: 1px solid var(--nr-border);
    overflow: hidden;
}

/* Header card */
.nr-tour-detail__head {
    background: linear-gradient(135deg, var(--nr-navy) 0%, var(--nr-navy-deep) 100%);
    padding: 36px 40px;
    text-align: center;
    position: relative;
}

.nr-tour-detail__head::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(63,169,201,.15), transparent 55%);
    pointer-events: none;
}

.nr-tour-detail__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--nr-teal), var(--nr-teal-dark));
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.nr-tour-detail__title {
    font-family: var(--nr-display);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.nr-tour-detail__subtitle {
    font-family: var(--nr-display);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,.75);
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Info strip */
.nr-tour-detail__info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--nr-border);
    background: #fafbfd;
}

.nr-tour-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-right: 1px solid var(--nr-border);
}

.nr-tour-info-item:last-child { border-right: none; }

.nr-tour-info-item svg {
    width: 28px;
    height: 28px;
    color: var(--nr-teal);
    flex-shrink: 0;
}

.nr-tour-info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--nr-muted);
    margin-bottom: 3px;
}

.nr-tour-info-value {
    font-family: var(--nr-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--nr-navy);
    line-height: 1;
}

/* Body: immagine + descrizione */
.nr-tour-detail__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.nr-tour-detail__img {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.nr-tour-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.nr-tour-detail:hover .nr-tour-detail__img img { transform: scale(1.03); }

.nr-tour-detail__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,58,95,.14) 0%, transparent 55%);
    pointer-events: none;
}

.nr-tour-detail__desc {
    padding: 36px 38px;
    display: flex;
    flex-direction: column;
}

.nr-tour-detail__desc h3 {
    font-family: var(--nr-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--nr-navy);
    margin: 0 0 18px;
    line-height: 1;
}

.nr-tour-detail__desc h3.nr-desc-sub {
    font-size: 1.2rem;
    margin: 24px 0 12px;
}

.nr-tour-detail__text {
    font-size: 15px;
    color: var(--nr-muted);
    line-height: 1.85;
    margin: 0 0 14px;
}

.nr-tour-detail__note {
    font-size: 13px;
    color: hsl(40 60% 35%);
    background: hsl(45 80% 96%);
    border-left: 4px solid hsl(40 70% 55%);
    padding: 14px 16px;
    border-radius: 0 var(--nr-radius-sm) var(--nr-radius-sm) 0;
    margin: 16px 0;
    line-height: 1.7;
}

.nr-tour-inclusions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nr-tour-inclusions li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--nr-text);
    line-height: 1.5;
}

.nr-tour-inclusions li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--nr-teal-soft);
    color: var(--nr-teal);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.nr-tour-exclusions li::before {
    content: '✕';
    background: hsl(0 70% 93%);
    color: hsl(0 65% 50%);
}

/* Opzioni cena */
.nr-cena-options {
    background: #fafbfd;
    border: 1px solid var(--nr-border);
    border-radius: var(--nr-radius-sm);
    padding: 18px 20px;
    margin: 16px 0 0;
}

.nr-cena-options h4 {
    font-family: var(--nr-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nr-navy);
    margin: 0 0 12px;
}

.nr-cena-options p {
    font-size: 13px;
    color: var(--nr-muted);
    line-height: 1.7;
    margin: 0 0 8px;
}

.nr-cena-options p:last-child { margin-bottom: 0; }

/* Route / timeline */

/* Allineamento colonna orari timeline */
.nr-timeline-time {
    padding-top: 2px;
    min-width: 145px;
    flex-shrink: 0;
}

/* Icona ✕ per le esclusioni */
.nr-tour-exclusions li::before {
    content: '✕';
    background: hsl(0 70% 93%);
    color: hsl(0 65% 50%);
}

.nr-tour-route {
    padding: 36px 40px;
    background: #fafbfd;
    border-top: 1px solid var(--nr-border);
}

.nr-tour-route__title {
    font-family: var(--nr-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--nr-navy);
    text-align: center;
    margin: 0 0 36px;
}

/* Route line */
.nr-route-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 20px;
    margin-bottom: 44px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.nr-route-line::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--nr-navy) 0%, var(--nr-teal) 100%);
    opacity: .25;
    border-radius: 2px;
}

.nr-route-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 110px;
}

.nr-route-stop__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    border: 2.5px solid var(--nr-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    box-shadow: var(--nr-shadow-soft);
}

.nr-route-stop:first-child .nr-route-stop__icon {
    background: var(--nr-navy);
    border-color: var(--nr-navy);
}

.nr-route-stop:last-child .nr-route-stop__icon {
    background: var(--nr-teal);
    border-color: var(--nr-teal);
}

.nr-route-stop__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--nr-navy);
    text-align: center;
    line-height: 1.3;
    font-family: var(--nr-display);
}

.nr-route-stop__time {
    font-size: 11px;
    color: var(--nr-muted);
    margin-top: 4px;
}

/* Timeline verticale */
.nr-timeline {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nr-timeline-item {
    display: flex;
    gap: 20px;
    padding-left: 32px;
    position: relative;
    padding-bottom: 28px;
    align-items: flex-start; /* aggiunto */
}

.nr-timeline-item:last-child { padding-bottom: 0; }

.nr-timeline-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: rgba(63,169,201,.25);
}

.nr-timeline-item:last-child::before { display: none; }

.nr-timeline-dot {
    position: absolute;
    left: 0;
    top: 2px;            /* era 4px, abbassa leggermente */
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--nr-teal);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px rgba(63,169,201,.35);
}

.nr-timeline-time {
    font-family: var(--nr-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--nr-teal);
    width: 70px;        /* ← larghezza FISSA, non min-width */
    flex-shrink: 0;
    line-height: 1.3;
    padding-top: 0;
}

.nr-timeline-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--nr-navy);
    margin: 0 0 4px !important;
    line-height: 1;
    padding-top: 0;      /* resetta anche qui */
}

.nr-timeline-content p {
    font-size: 13px;
    color: var(--nr-muted);
    line-height: 1.65;
    margin: 0;
}

/* Footer card: prezzo + CTA */
.nr-tour-detail__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 38px;
    border-top: 1px solid var(--nr-border);
    background: #fff;
    flex-wrap: wrap;
}

.nr-tour-price-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--nr-muted);
    margin-bottom: 4px;
}

.nr-tour-price {
    font-family: var(--nr-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--nr-navy);
    line-height: 1;
    display: block;
}

.nr-tour-price-note {
    font-size: 12px;
    color: var(--nr-muted);
    margin-top: 4px;
    display: block;
}

.nr-tour-detail__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.nr-tour-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nr-teal), var(--nr-teal-dark));
    color: #fff;
    font-family: var(--nr-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(63,169,201,.26);
    transition: transform .22s ease, filter .22s ease;
    cursor: pointer;
    border: none;
}

.nr-tour-book-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }

.nr-tour-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nr-navy);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}

.nr-tour-wa-btn:hover { color: var(--nr-teal); background: var(--nr-teal-soft); }
.nr-tour-wa-btn svg { width: 18px; height: 18px; }

/* ============================================
   SEZIONE EXTRA (ultimi 4 tour)
   ============================================ */
.nr-tour-extra {
    background:
        radial-gradient(circle at top left, rgba(63,169,201,.08), transparent 24%),
        linear-gradient(180deg, #fbfcfd 0%, #f4f7fb 100%);
    padding: 72px 20px 80px;
}

.nr-tour-extra__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.nr-tour-extra__header h2 {
    font-family: var(--nr-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    color: var(--nr-navy);
    margin: 10px 0 14px;
    line-height: .98;
}

.nr-tour-extra__header p {
    font-size: 15px;
    color: var(--nr-muted);
    line-height: 1.8;
    margin: 0;
}

.nr-tour-extra__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.nr-extra-card {
    background: #fff;
    border-radius: var(--nr-radius);
    box-shadow: var(--nr-shadow-soft);
    border: 1px solid var(--nr-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .28s ease, box-shadow .28s ease;
}

.nr-extra-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nr-shadow);
}

.nr-extra-card__media {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.nr-extra-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.nr-extra-card:hover .nr-extra-card__media img { transform: scale(1.05); }

.nr-extra-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--nr-exp-badge, var(--nr-teal));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(0,0,0,.10);
}

.nr-extra-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 22px;
}

.nr-extra-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.nr-extra-card__meta span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nr-teal);
}

.nr-extra-card__meta span + span::before {
    content: '·';
    margin-right: 8px;
}

.nr-extra-card__body h3 {
    font-family: var(--nr-display);
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 600;
    color: var(--nr-navy);
    margin: 0 0 8px;
}

.nr-extra-card__body p {
    font-size: 13px;
    color: var(--nr-muted);
    line-height: 1.75;
    margin: 0 0 16px;
    flex: 1;
}

.nr-extra-card__pricing {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--nr-border);
    margin-bottom: 14px;
}

.nr-extra-card__price-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--nr-muted);
    margin-bottom: 3px;
}

.nr-extra-card__price {
    font-family: var(--nr-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--nr-navy);
    line-height: 1;
}

.nr-extra-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nr-teal), var(--nr-teal-dark));
    color: #fff;
    font-family: var(--nr-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(63,169,201,.20);
    transition: transform .22s ease, filter .22s ease;
    text-decoration: none;
}

.nr-extra-card__cta:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* ============================================
   FAQ
   ============================================ */
.nr-tour-faq {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px 72px;
}

.nr-tour-faq h2 {
    font-family: var(--nr-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--nr-navy);
    text-align: center;
    margin: 0 0 44px;
    line-height: .98;
}

.nr-faq-item2 {
    background: #fff;
    border: 1px solid var(--nr-border);
    border-radius: var(--nr-radius-sm);
    margin-bottom: 10px;
    box-shadow: var(--nr-shadow-soft);
    overflow: hidden;
}

.nr-faq-q2 {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--nr-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--nr-navy);
    transition: color .2s ease;
}

.nr-faq-q2:hover { color: var(--nr-teal); }

.nr-faq-q2__icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--nr-teal-soft);
    color: var(--nr-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    flex-shrink: 0;
    transition: background .2s ease, transform .2s ease;
}

.nr-faq-item2.is-open .nr-faq-q2__icon {
    background: var(--nr-teal);
    color: #fff;
    transform: rotate(45deg);
}

.nr-faq-a2 {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--nr-muted);
    line-height: 1.8;
}

.nr-faq-item2.is-open .nr-faq-a2 { display: block; }

/* ============================================
   FINAL CTA
   ============================================ */
.nr-tour-final-cta {
    background: linear-gradient(135deg, var(--nr-navy) 0%, var(--nr-navy-deep) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nr-tour-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(63,169,201,.15), transparent 55%);
    pointer-events: none;
}

.nr-tour-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.nr-tour-final-cta h2 {
    font-family: var(--nr-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1;
}

.nr-tour-final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
    margin: 0 0 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .nr-tour-extra__grid { grid-template-columns: repeat(2, 1fr); }
    .nr-tour-detail__body { grid-template-columns: 1fr; }
    .nr-tour-detail__img { min-height: 320px; }
    .nr-tour-detail__info { grid-template-columns: repeat(2, 1fr); }
    .nr-tour-info-item:nth-child(2) { border-right: none; }
    .nr-tour-info-item:nth-child(3) { border-top: 1px solid var(--nr-border); }
    .nr-tour-info-item:nth-child(4) { border-top: 1px solid var(--nr-border); border-right: none; }
}

@media (max-width: 768px) {
    .nr-tour-hero { padding: 120px 20px 60px; min-height: auto; }
.nrf-hero__bg {position: absolute; inset: 0; z-index: 0;}
.nrf-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block;}
.nrf-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* 0.45 = 45% di nero */
    z-index: 1;
}
    .nr-boat-highlight { margin: -20px 16px 40px; padding: 20px; flex-direction: column; }
    .nr-tour-cards-wrap { padding: 0 16px 48px; gap: 36px; }
    .nr-tour-detail__head { padding: 28px 24px; }
    .nr-tour-detail__desc { padding: 24px 22px; }
    .nr-tour-route { padding: 28px 22px; }
    .nr-tour-detail__footer { padding: 22px; flex-direction: column; align-items: flex-start; }
    .nr-tour-detail__actions { width: 100%; }
    .nr-tour-book-btn { width: 100%; }
    .nr-tour-extra { padding: 56px 16px 64px; }
    .nr-tour-extra__grid { grid-template-columns: 1fr; gap: 18px; }
    .nr-route-line { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .nr-route-line::before { display: none; }
    .nr-tour-detail__info { grid-template-columns: 1fr 1fr; }
    .nr-tour-hero__trust { gap: 20px; }
}

@media (max-width: 580px) {
    .nr-tour-extra__grid { grid-template-columns: 1fr; }
    .nr-tour-detail__info { grid-template-columns: 1fr; }
    .nr-tour-info-item { border-right: none; border-top: 1px solid var(--nr-border); }
    .nr-tour-info-item:first-child { border-top: none; }
}
