/* ============================================
   MUCCI BOAT — Homepage Styles
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 25, 50, 0.10) 0%,
        rgba(10, 25, 50, 0.05) 30%,
        rgba(10, 25, 50, 0.25) 60%,
        rgba(10, 25, 50, 0.50) 100%
    );
    z-index: 1;
}

.hero__fade {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 300px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 11;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 90px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Search Band (navy bottom bar) ---------- */
.hero__search-band {
    position: relative;
    z-index: 10;
    background: #002954;
    padding: 32px 0 40px;
}

/* Wave pattern overlay */
.hero__search-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: 600px auto;
    background-position: center center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: soft-light;
}

.hero__search {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
}

.hero__tabs {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 20px;
}

.hero__tab {
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.hero__tab.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.hero__tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Search bar — flex row of individual field boxes + button */
.hero__search-bar {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

/* Each field is its own bordered box */
.hero__search-field {
    position: relative;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition), background var(--transition);
}

.hero__search-field:hover,
.hero__search-field.active {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.hero__search-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    user-select: none;
}

/* Icons in gold */
.hero__search-input svg:first-child {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    color: var(--gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.hero__field-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    white-space: nowrap;
    flex: 1;
}

.hero__chevron {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.4);
    fill: none;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.hero__search-field.active .hero__chevron {
    transform: rotate(180deg);
}

/* Hidden native date input (offscreen for accessibility) */
.hero__date-native {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* Search button (gold, same height as fields) */
.hero__search-btn {
    padding: 18px 40px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gold button variant */
.btn--gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--white);
}

/* ---------- Calendar Dropdown ---------- */
.hero__calendar-dropdown,
.hero__guests-dropdown,
.hero__time-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 20px;
    z-index: 100;
    display: none;
}

.hero__calendar-dropdown.open,
.hero__guests-dropdown.open,
.hero__time-dropdown.open {
    display: block;
}

.hero__cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero__cal-month-year {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    text-transform: capitalize;
}

.hero__cal-prev,
.hero__cal-next {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy);
    transition: background var(--transition);
}
.hero__cal-prev:hover,
.hero__cal-next:hover {
    background: #e8e4dd;
}

.hero__cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 8px;
}
.hero__cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
}

.hero__cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.hero__cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.15s ease;
}
.hero__cal-day:hover {
    background: var(--light-bg);
}
.hero__cal-day.today {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
}
.hero__cal-day.selected {
    background: var(--navy);
    color: var(--white);
}
.hero__cal-day.disabled {
    color: #ccc;
    pointer-events: none;
}
.hero__cal-day.other-month {
    visibility: hidden;
}

/* ---------- Guests Dropdown ---------- */
.hero__guests-dropdown {
    min-width: 280px;
    padding: 16px 20px;
}

.hero__guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.hero__guest-row + .hero__guest-row {
    border-top: 1px solid var(--border-color);
}

.hero__guest-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero__guest-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.hero__guest-desc {
    font-size: 12px;
    color: var(--text-light);
}

.hero__guest-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero__guest-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}
.hero__guest-btn:hover {
    border-color: var(--navy);
    background: var(--light-bg);
}
.hero__guest-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

.hero__guest-count {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    min-width: 20px;
    text-align: center;
}

/* ---------- Service Type Dropdown ---------- */
.hero__service-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 8px;
    z-index: 100;
    display: none;
}
.hero__service-dropdown.open {
    display: block;
}

.hero__service-option {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
    font-family: var(--font-body);
}
.hero__service-option:hover {
    background: var(--light-bg, #f5f5f5);
}
.hero__service-option.active {
    background: rgba(27, 58, 92, 0.08);
}
.hero__service-option.active .hero__service-name {
    color: var(--navy);
}

.hero__service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.hero__service-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.3;
}

/* ---------- Time Picker Dropdown ---------- */
.hero__time-dropdown {
    min-width: 160px;
    padding: 8px;
}
.hero__time-list {
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero__time-list::-webkit-scrollbar {
    width: 4px;
}
.hero__time-list::-webkit-scrollbar-track {
    background: transparent;
}
.hero__time-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}
.hero__time-option {
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    background: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
    white-space: nowrap;
}
.hero__time-option:hover {
    background: var(--light-bg);
}
.hero__time-option.selected {
    background: var(--gold);
    color: var(--white);
}

/* ---------- Combined DateTime Dropdown ---------- */
.hero__datetime-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    padding: 20px;
    z-index: 100;
    display: none;
}
.hero__datetime-dropdown.open {
    display: block;
}

.hero__dt-time-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.hero__dt-back {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    padding: 4px 0;
    transition: color var(--transition);
}
.hero__dt-back:hover {
    color: var(--gold);
}
.hero__dt-back svg {
    stroke: currentColor;
}

.hero__dt-selected-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.hero__dt-time-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.hero__dt-time .hero__time-list {
    max-height: 220px;
}

/* Scroll Indicator — positioned inside the band */
.hero__scroll {
    position: absolute;
    bottom: 16px;
    right: 40px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition);
    text-decoration: none;
}
.hero__scroll:hover {
    transform: translateY(4px);
    background: rgba(27, 58, 92, 0.9);
}
.hero__scroll svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   ABOUT (Nautica Ares)
   ============================================ */
.about {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.about__header {
    text-align: center;
    margin-bottom: 0px;
}

.about__header .section-heading {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about__header .section-text {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

/* 3 Images Row */
/* 3 Services Row */
.about__services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.about__service {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__service-image {
    width: 100%;
    height: 260px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 28px;
}

.about__service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__service-body {
    margin-bottom: 16px;
}

.about__service-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 12px;
}

.about__service-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-medium);
    max-width: 380px;
    margin: 0 auto;
}

.about__service .link-arrow {
    margin-top: 4px;
}

/* 2 Large Image Blocks */
.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about__feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__feature-image {
    width: 100%;
    height: 340px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 28px;
}

.about__feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__feature .placeholder {
    height: 100%;
}

.about__feature-body {
    margin-bottom: 16px;
}

.about__feature-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 28px 32px;
    border-radius: 0 0 0 0;
}

.about__feature-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 12px;
}

.about__feature-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-medium);
    max-width: 480px;
    margin: 0 auto;
}

.about__feature .link-arrow {
    margin-top: 4px;
}

/* ============================================
   FEATURES (Perché Sceglierci)
   ============================================ */
.features {
    position: relative;
    overflow: hidden;
    padding: 80px 0px;
}

.features__bg {
    position: absolute;
    inset: 0;
}

.features__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.features__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.features__inner {
    position: relative;
    z-index: 2;
}

.features__header {
    text-align: center;
    margin-bottom: 56px;
}

.features__header .section-label {
    color: var(--gold-light);
}

.features__header .section-heading {
    color: var(--white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.features__card {
    background: var(--white);
    border-radius: 0;
    padding: 32px 28px 36px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}

.features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.features__card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.features__card-icon {
    width: 48px;
    height: 48px;
    background: #E8EDF2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features__card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.features__card-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.features__card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.features__card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
}

.features__cta {
    text-align: center;
}

/* ============================================
   FLEET (Dalla Nostra Flotta)
   ============================================ */
.fleet {
    background: var(--white);
}

.fleet__header {
    text-align: center;
    margin-bottom: 48px;
}

.fleet__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.fleet__card {
    display: block;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    color: inherit;
}

.fleet__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
}

.fleet__card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.fleet__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet__card:hover .fleet__card-image img {
    transform: scale(1.05);
}

.fleet__card-image .placeholder {
    height: 100%;
    background: #B8B5AE;
}

/* "Senza patente" badge */
.fleet__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(27, 58, 92, 0.85);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
}

.fleet__card-body {
    padding: 20px 24px 24px;
}

.fleet__card-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 6px;
}

.fleet__card-name a {
    color: inherit;
    text-decoration: none;
}

.fleet__card-specs {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.5;
}

.fleet__card-rental {
    font-size: 13px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.fleet__card-price {
    font-family: var(--font-body);
}

.fleet__card-price strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

/* "Scopri di più" link (legacy, hidden since card is now <a>) */
.fleet__card-link {
    display: none;
}

.fleet__cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   DESTINATIONS (Destinazioni)
   ============================================ */
.destinations {
    background: #EDF1F5;
    padding: 80px 0;
}

.destinations__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.destinations__header-text {
    flex: 1;
}

.destinations__header .section-label {
    color: var(--gold);
}

.destinations__header .section-heading {
    color: var(--navy);
}

.destinations__nav {
    display: flex;
    gap: 10px;
}

.destinations__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--navy);
}
.destinations__nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.destinations__nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.destinations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.destinations__card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: transform var(--transition);
}
.destinations__card:hover {
    transform: translateY(-4px);
}

.destinations__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destinations__card .placeholder {
    height: 100%;
    background: #A8A5A0;
}

.destinations__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.destinations__card-name {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.destinations__cta {
    text-align: left;
}

/* ============================================
   TESTIMONIAL (Fidati di Noi)
   ============================================ */
.testimonial {
    background: #EDF1F5;
}

.testimonial__inner {
    display: flex;
    position: relative;
    min-height: 520px;
    width: 100%;
}

.testimonial__track {
    display: flex;
    width: 100%;
}

.testimonial__slide {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    min-height: 520px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.testimonial__slide.is-active {
    display: flex !important;
}

.testimonial__image {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    overflow: hidden;
}

.testimonial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial__content {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    background: #2C4A6B;
    padding: 60px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.testimonial__quote-mark {
    font-family: var(--font-heading);
    font-size: 100px;
    line-height: 0.6;
    color: rgba(255, 255, 255, 0.12);
    margin-bottom: 8px;
    user-select: none;
}

.testimonial__quote {
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 460px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.mpb-testimonial .testimonial__quote,
.mpb-testimonial .testimonial__author {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.mpb-testimonial.is-fading-out .testimonial__quote,
.mpb-testimonial.is-fading-out .testimonial__author {
    opacity: 0;
    transform: translateY(8px);
}

.testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-light);
}

.testimonial__nav {
    display: flex;
    gap: 10px;
}

.testimonial__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: rgba(255, 255, 255, 0.6);
}

.testimonial__nav-btn:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.testimonial__nav-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.testimonial__nav-btn:disabled {
    opacity: 0.45;
    cursor: default;
}

/* ============================================
   FAQ (Domande Frequenti)
   ============================================ */
.faq {
    background: var(--white);
}

.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
}

.faq__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: #EDF1F5;
    border-radius: 6px;
    overflow: hidden;
    transition: background var(--transition);
}

.faq__item.active {
    background: #EDF1F5;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    transition: color var(--transition);
    user-select: none;
}

.faq__question-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: bold;
    color: var(--navy);
    line-height: 1.4;
    transition: color var(--transition);
}

.faq__item.active .faq__question-text {
    color: var(--gold);
}

.faq__question-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    transition: all var(--transition);
}

.faq__question-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.faq__icon-minus {
    display: none;
}

.faq__item.active .faq__icon-plus {
    display: none;
}

.faq__item.active .faq__icon-minus {
    display: block;
}

.faq__item.active .faq__question-toggle {
    background: var(--gold);
}

.faq__item.active .faq__question-toggle svg {
    stroke: var(--white);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: fit-content;
    padding: 0 24px 24px;
}

.faq__answer-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 52px 0;
    background: var(--gold);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner__text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

.cta-banner__btn {
    flex-shrink: 0;
}

.cta-banner__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all var(--transition);
}

.cta-banner__link:hover {
    background: #F5F5F5;
    color: var(--navy);
}

.cta-banner__link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {

    /* Hero */
    .hero__title { font-size: 44px; max-width: 600px; }
    .hero__search-band { padding: 24px 0 32px; }
    .hero__search-bar { flex-wrap: wrap; gap: 10px; }
    .hero__search-field { flex: 1 1 calc(50% - 10px); min-width: 180px; }
    .hero__search-btn { width: 100%; }
    .hero__scroll { right: 24px; bottom: 12px; width: 44px; height: 44px; }
    .hero__scroll svg { width: 22px; height: 22px; }
    .hero__calendar-dropdown,
    .hero__guests-dropdown,
    .hero__service-dropdown,
    .hero__datetime-dropdown { min-width: 260px; }

    /* About */
    .about__services { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .about__service-image { height: 200px; }
    .about__features { gap: 24px; }
    .about__feature-image { height: 280px; }

    /* Features */
    .features__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Fleet */
    .fleet__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Destinations */
    .destinations__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .destinations__card { height: 300px; }

    /* FAQ */
    .faq__grid { grid-template-columns: 1fr; gap: 0; }

    /* CTA */
    .cta-banner__inner { flex-direction: column; text-align: center; gap: 20px; }
    .cta-banner__text { font-size: 20px; text-align: center; }
    .cta-banner__link { width: 100%; justify-content: center; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {

    /* Hero */
    .hero__content {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 40px;
    }
    .hero__title { font-size: 32px; max-width: 100%; }
    .hero__subtitle { font-size: 14px; max-width: 100%; }
    .hero__search-band { padding: 20px 0 24px; }
    .hero__tabs { flex-direction: column; gap: 8px; width: 100%; }
    .hero__tab { width: 100%; border-radius: var(--radius-sm) !important; }
    .hero__search-bar { flex-direction: column; gap: 10px; }
    .hero__search-field { flex: 1 1 100%; min-width: 0; }
    .hero__scroll { display: none; }
    .hero__calendar-dropdown,
    .hero__guests-dropdown,
    .hero__service-dropdown,
    .hero__datetime-dropdown { min-width: 240px; left: 0; right: 0; }

    /* About */
    .about__services { grid-template-columns: 1fr; gap: 40px; }
    .about__services .about__service { max-width: 420px; margin: 0 auto; }
    .about__service-image { height: 240px; }
    .about__features { grid-template-columns: 1fr; gap: 32px; }
    .about__feature-image { height: 260px; }

    /* Features */
    .features__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 48px; }

    /* Fleet */
    .fleet__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 48px; }
    .fleet__card-image { height: 200px; }

    /* Destinations */
    .destinations__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .destinations__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .destinations__card { height: 240px; }

    /* Testimonial */
    .testimonial__inner { display: block; min-height: auto; }
    .testimonial__track { display: block; }
    .testimonial__slide { min-height: auto; flex-direction: column; }
    .testimonial__slide.is-active { display: flex; }
    .testimonial__image { flex: none; width: 100%; max-width: 100%; height: 300px; }
    .testimonial__content { flex: none; width: 100%; max-width: 100%; padding: 40px 24px; }
    .testimonial__quote { font-size: 15px; }

    /* CTA */
    .cta-banner__text { font-size: 18px; text-align: center; }
    .cta-banner__link { width: 100%; justify-content: center; }
}

/* ============================================
   RESPONSIVE — SMALL PHONE (≤480px)
   ============================================ */
@media (max-width: 480px) {

    /* Hero */
    .hero__title { font-size: 26px; }
    .hero__subtitle { font-size: 13px; }
    .hero__tab { padding: 11px 20px; font-size: 12px; }
    .hero__search-input { padding: 14px 16px; }
    .hero__search-btn { padding: 14px 20px; font-size: 13px; }

    /* About */
    .about__service-image { height: 180px; }
    .about__service-title { font-size: 20px; }
    .about__feature-image { height: 220px; }
    .about__feature-title { font-size: 20px; }

    /* Features */
    .features__card { padding: 28px 20px 24px; }
    .features__card-title { font-size: 16px; }

    /* Destinations */
    .destinations__grid { grid-template-columns: 1fr; }
    .destinations__card { height: 220px; }
    .destinations__nav { display: none; }

    /* Fleet */
    .fleet__card-body { padding: 16px 20px 20px; }
    .fleet__card-price strong { font-size: 20px; }
}

/* Hero validation error state */
.hero__search-field--error {
    border-color: #e74c3c !important;
    animation: heroFieldShake 0.4s ease;
}
@keyframes heroFieldShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}
#owlise-chat-container h3{
    color:#fff!important;
}
#owlise-chat-toggle{
    width: 48px!important;
    height: 48px!important;
}