@font-face {
    font-family: 'Vogun';
    src: url('fonts/Vogun-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vogun';
    src: url('fonts/Vogun-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

:root {
    --sand: #f4ebe1;
    --gold: #c9a961;
    --dark: #2c2416;
    --cream: #faf8f5;
    --overlay: rgba(44, 36, 22, 0.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Vogun', 'Cormorant Garamond', serif;
    font-weight: 500;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    display: block;
    height: 39px;
    line-height: 0;
    z-index: 1001;
}

.logo a {
    display: block;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 68px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
}

/* Booking Form Inside Slider */
.booking-form-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 10;
}

.booking-form-slider form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.booking-form-slider input {
    flex: 1;
    padding: 10px 18px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--dark);
    transition: border-color 0.3s;
}

.booking-form-slider input:focus {
    outline: none;
    border-color: var(--gold);
}

.booking-form-slider button {
    padding: 10px 30px;
    background: var(--dark);
    color: var(--cream);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.booking-form-slider button:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Accordion Toggle for Mobile */
.booking-form-toggle {
    display: none;
    width: 100%;
    padding: 16px 20px;
    background: rgba(250, 248, 245, 0.98);
    border: none;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.3s;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    pointer-events: auto;
}

.booking-form-toggle::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    font-size: 10px;
    pointer-events: none;
}

.booking-form-toggle.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.booking-form-toggle:active {
    background: rgba(244, 235, 225, 0.98);
}

/* Desktop - Always show form content */
.booking-form-content {
    max-height: none;
    opacity: 1;
    overflow: visible;
}

@media (max-width: 768px) {
    .booking-form-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    }
    
    .booking-form-content.active {
        max-height: 500px;
        opacity: 1;
    }
}

/* Sticky Booking Form */
.booking-form-sticky {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 998;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
}

.booking-form-sticky.visible {
    transform: translateY(0);
}

.booking-form-sticky form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.booking-form-sticky input {
    flex: 1;
    padding: 10px 18px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--dark);
    transition: border-color 0.3s;
}

.booking-form-sticky input:focus {
    outline: none;
    border-color: var(--gold);
}

.booking-form-sticky button {
    padding: 10px 30px;
    background: var(--dark);
    color: var(--cream);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.booking-form-sticky button:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    text-align: center;
    background: var(--cream);
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(44, 36, 22, 0.8);
}

/* Boats Section */
.boats-section {
    padding: 0;
    margin: 0;
}

.boat-card {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.boat-image {
    position: relative;
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boat-overlay {
    text-align: center;
    color: white;
    z-index: 1;
}

.boat-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
}

.boat-title {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 500;
}

.boat-specs {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

/* Description */
.description {
    padding: 80px 0;
    text-align: center;
}

.description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(44, 36, 22, 0.8);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--dark);
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #3d362e;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s;
    text-align: center;
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.quote {
    font-family: 'Vogun', 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(250, 248, 245, 0.9);
}

.author {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(250, 248, 245, 0.6);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav button {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(250, 248, 245, 0.3);
    background: transparent;
    font-size: 24px;
    color: rgba(250, 248, 245, 0.7);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-nav button:hover {
    background: rgba(250, 248, 245, 0.1);
    color: var(--gold);
    border-color: var(--gold);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--cream);
    padding: 80px 0 30px;
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.social {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(250, 248, 245, 0.5);
}

/* ==================== ITINERARY PAGE ==================== */

/* Page Hero */
.page-hero {
    margin-top: 68px;
    height: 35vh;
    background: linear-gradient(135deg, var(--sand) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-stats {
    font-size: 14px;
    letter-spacing: 2.5px;
    color: rgba(44, 36, 22, 0.6);
}

.hero-stats span {
    margin: 0 8px;
}

/* Itinerary Hero with Image */
.itinerary-hero-image {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    margin-top: 68px;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                                rgba(44, 36, 22, 0.5) 0%,
                                rgba(44, 36, 22, 0.6) 50%,
                                rgba(44, 36, 22, 0.7) 100%);
    z-index: 1;
}

.hero-video-content {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Vogun', 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a961;
    opacity: 0.85;
    margin: 0;
}

/* Itinerary Intro */
.itinerary-intro {
    padding: 80px 0 60px;
    background: var(--cream);
}

.itinerary-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(44, 36, 22, 0.85);
}

.itinerary-intro ul li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(44, 36, 22, 0.8);
}

.itinerary-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Side - Content */
.itinerary-content {
    position: relative;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Right Side - Timeline */
.timeline-side {
    background: #222222;
    position: sticky;
    top: 68px;
    bottom: 68px;
    height: calc(100vh - 68px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    z-index: 1;
}

.itinerary-container {
    max-width: none;
    margin: 0;
    padding: 0;
    display: contents;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    height: 500px;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 500px;
    pointer-events: none;
}

.timeline-line-base,
.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.timeline-line-progress {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-line svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Barco animado */
.timeline-boat {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    z-index: 15;
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.timeline-points {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    height: 500px;
    justify-content: space-between;
    pointer-events: auto;
}

.timeline-point {
    position: relative;
    width: 14px;
    height: 14px;
    background: #222222;
    border: 2px solid rgba(173, 151, 102, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    pointer-events: auto;
}

.timeline-point:hover {
    transform: scale(1.3);
    border-color: #ad9766;
    border-width: 2.5px;
    box-shadow: 0 0 0 4px rgba(173, 151, 102, 0.15);
}

.timeline-point.active {
    background: #ad9766;
    border-color: #ad9766;
    border-width: 2.5px;
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(173, 151, 102, 0.2);
}

.point-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    color: rgba(173, 151, 102, 0.65);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Labels a la derecha (por defecto) */
.timeline-point:nth-child(odd) .point-label {
    left: 35px;
    align-items: flex-start;
}

/* Labels a la izquierda */
.timeline-point:nth-child(even) .point-label {
    right: 35px;
    align-items: flex-end;
    text-align: right;
}

.point-day {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.point-location {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

/* Activo: más grande y más visible */
.timeline-point.active .point-label {
    color: #d4af6a;
}

.timeline-point.active .point-day {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-point.active .point-location {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Day Sections - Fullwidth scrolling como about.html */
.day-section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 0;
    scroll-margin-top: 68px;
    position: relative;
    display: flex;
    align-items: center;
}



.day-info h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1410;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.day-info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #b8933d;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.day-info p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: rgba(26, 20, 16, 0.85);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.day-highlights {
    list-style: none;
    margin-top: 25px;
    padding: 25px;
    background: rgba(244, 235, 225, 0.6);
    border-left: 2px solid var(--gold);
}

.day-highlights li {
    font-size: 13px;
    padding: 6px 0;
    color: rgba(26, 20, 16, 0.85);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.day-highlights li::before {
    content: '—';
    margin-right: 12px;
    color: var(--gold);
    font-weight: 300;
}

/* Note */
.itinerary-note {
    padding: 60px 0;
    background: var(--cream);
    position: relative;
    z-index: 10;
}

.itinerary-note h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    text-align: center;
    color: var(--dark);
}

.itinerary-note p {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    color: rgba(44, 36, 22, 0.65);
}

/* ==================== BOAT PAGE ==================== */

/* Boat Hero Slider */
.boat-hero-slider {
    margin-top: 68px;
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.boat-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.boat-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.boat-slide.active {
    opacity: 1;
}

.boat-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.boat-dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.boat-dot.active {
    background: rgba(255, 255, 255, 0.9);
}

/* Boat Overview */
.boat-overview {
    padding: 100px 0 80px;
    text-align: center;
}

.boat-section-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--dark);
}

.boat-section-subtitle {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--dark);
}

.boat-overview p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(44, 36, 22, 0.75);
}

/* Boat Cabins Simple */
.boat-cabins-simple {
    padding: 80px 0;
}

.cabin-simple {
    margin-bottom: 100px;
}

.cabin-simple:last-child {
    margin-bottom: 0;
}

.cabin-simple-image {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}

.cabin-simple-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.cabin-simple-content h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--dark);
}

.cabin-simple-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(44, 36, 22, 0.75);
}

/* Boat Route Simple */
.boat-route-simple {
    padding: 100px 0;
    background: var(--sand);
}

.boat-route-simple .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.route-simple-map {
    flex: 0 0 auto;
    position: relative;
}

.timeline-wrapper-boat {
    position: relative;
    width: 200px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-wrapper-boat .timeline-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 500px;
}

.timeline-wrapper-boat .timeline-line svg {
    width: 100%;
    height: 100%;
}

.timeline-points-boat {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 83.3px;
    align-items: center;
    z-index: 2;
    height: 500px;
    justify-content: space-between;
}

.timeline-point-boat {
    position: relative;
    width: 10px;
    height: 10px;
    background: var(--sand);
    border: 1.5px solid rgba(173, 151, 102, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    opacity: 0.2;
}

.timeline-point-boat:first-child {
    opacity: 1;
    border-color: #ad9766;
    border-width: 2px;
}

.timeline-wrapper-boat:hover .timeline-point-boat {
    opacity: 0.5;
}

.timeline-point-boat:hover {
    transform: scale(1.3);
    border-color: #ad9766;
    border-width: 2px;
    opacity: 1;
}

.timeline-point-boat.active {
    background: #ad9766;
    border-color: #ad9766;
    border-width: 2px;
    transform: scale(1.2);
    opacity: 1;
}

.point-label-boat {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    color: #ad9766;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.timeline-point-boat:first-child .point-label-boat {
    opacity: 0.5;
}

.timeline-point-boat:hover .point-label-boat,
.timeline-point-boat.active .point-label-boat {
    opacity: 1;
}

.point-label-boat .point-day {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.timeline-point-boat:hover .point-day,
.timeline-point-boat.active .point-day {
    opacity: 0.7;
}

.point-label-boat .point-location {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.route-simple-info h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--dark);
}

.route-simple-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-simple-info li {
    font-size: 16px;
    line-height: 2;
    color: rgba(44, 36, 22, 0.7);
}

.route-simple-info li::before {
    content: '- ';
    color: var(--gold);
}

/* Journey CTA Section - Redesigned */
.journey-cta {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.journey-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.journey-cta h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--dark);
    letter-spacing: 1px;
    text-align: center;
}

.journey-intro {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(44, 36, 22, 0.8);
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.journey-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 60px 0;
    border-top: 1px solid rgba(173, 151, 102, 0.2);
    border-bottom: 1px solid rgba(173, 151, 102, 0.2);
}

.highlight-item {
    text-align: center;
    padding: 0 20px;
}

.highlight-item h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.highlight-item p {
    font-size: 15px;
    color: rgba(44, 36, 22, 0.75);
    line-height: 1.7;
}

.btn-large {
    padding: 18px 60px;
    font-size: 13px;
    display: inline-block;
}

/* ==================== NEW BOAT PAGE STRUCTURE ==================== */

/* Boat Hero Image */
.boat-hero-image {
    margin-top: 68px;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

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

/* Booking Form Boat */
.booking-form-boat {
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.booking-form-toggle-boat {
    display: none;
    width: 100%;
    padding: 16px 20px;
    background: rgba(250, 248, 245, 0.98);
    border: none;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    pointer-events: auto;
}

.booking-form-toggle-boat::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    font-size: 10px;
    pointer-events: none;
}

.booking-form-toggle-boat.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.booking-form-toggle-boat:active {
    background: rgba(244, 235, 225, 0.98);
}

.booking-form-content-boat {
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.booking-form-content-boat.collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.booking-form-boat form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.booking-form-boat input {
    flex: 1;
    padding: 10px 18px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--dark);
    transition: border-color 0.3s;
}

.booking-form-boat input:focus {
    outline: none;
    border-color: var(--gold);
}

.booking-form-boat button {
    padding: 10px 30px;
    background: var(--dark);
    color: var(--cream);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.booking-form-boat button:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Overview New */
.boat-overview-new {
    padding: 80px 0;
    text-align: center;
}

.boat-overview-new h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--dark);
}

.boat-overview-new h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--dark);
}

.boat-overview-new p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(44, 36, 22, 0.75);
}

/* ==================== MODERN CABINS GRID ==================== */
.cabins-grid {
    padding: 60px 0 100px;
    background: var(--cream);
}

.cabins-grid .container {
    max-width: 1600px;
}

.cabins-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.cabin-card {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.cabin-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabin-card:hover .cabin-card-image {
    transform: scale(1.05);
}

.cabin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                                rgba(44, 36, 22, 0) 0%,
                                rgba(44, 36, 22, 0.3) 50%,
                                rgba(44, 36, 22, 0.85) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.cabin-card:hover::before {
    background: linear-gradient(to bottom, 
                                rgba(44, 36, 22, 0) 0%,
                                rgba(44, 36, 22, 0.4) 50%,
                                rgba(44, 36, 22, 0.92) 100%);
}

.cabin-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    z-index: 2;
    color: white;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabin-card:hover .cabin-card-content {
    transform: translateY(-15px);
}

.cabin-card-content h3 {
    font-family: 'Vogun', 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto hover: título más grande y con más tracking */
.cabin-card:hover .cabin-card-content h3 {
    font-size: 44px;
    letter-spacing: 3px;
    transform: translateX(5px);
}

.cabin-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.cabin-card:hover .cabin-card-content p {
    opacity: 1;
    transform: translateY(0);
}

.cabin-number {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto hover: número más grande y dorado */
.cabin-card:hover .cabin-number {
    font-size: 72px;
    letter-spacing: 8px;
    color: var(--gold);
    opacity: 0.3;
    top: 50%;
    left: 30px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
}
}

/* Boat Itinerary Section */
.boat-itinerary-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.boat-itinerary-content {
    background-image: url('https://images.unsplash.com/photo-1568322445389-f64ac2515020?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.boat-itinerary-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.85), rgba(250, 248, 245, 0.92));
}

.boat-content-wrapper {
    position: relative;
    padding: 80px 100px 80px 120px;
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}

.boat-timeline-side {
    background: #222222;
    position: relative;
}

.boat-timeline-wrapper {
    position: sticky;
    top: 180px;
    height: 500px;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boat-timeline-wrapper .timeline-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 500px;
    pointer-events: none;
}

.boat-timeline-wrapper .timeline-line svg {
    width: 100%;
    height: 100%;
    display: block;
}

.boat-timeline-points {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    z-index: 2;
    height: 500px;
    justify-content: space-between;
}

.boat-timeline-point {
    position: relative;
    width: 12px;
    height: 12px;
    background: #222222;
    border: 2px solid rgba(173, 151, 102, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    opacity: 0.3;
}

.boat-timeline-point:first-child {
    opacity: 1;
    border-color: #ad9766;
    border-width: 2.5px;
    box-shadow: 0 0 0 4px rgba(173, 151, 102, 0.15);
}

.boat-timeline-wrapper:hover .boat-timeline-point {
    opacity: 0.6;
}

.boat-timeline-point:hover {
    transform: scale(1.4);
    border-color: #ad9766;
    border-width: 2.5px;
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(173, 151, 102, 0.15);
}

.boat-timeline-point.active {
    background: #ad9766;
    border-color: #ad9766;
    border-width: 2.5px;
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(173, 151, 102, 0.15);
}

.boat-point-label {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    color: #ad9766;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.boat-point-day {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
}

.boat-point-location {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.boat-timeline-point:first-child .boat-point-label {
    opacity: 0.6;
}

.boat-timeline-point:hover .boat-point-label,
.boat-timeline-point.active .boat-point-label {
    opacity: 1;
}

.boat-timeline-point:hover .boat-point-day,
.boat-timeline-point.active .boat-point-day {
    opacity: 0.8;
}

.boat-day-section {
    margin-bottom: 120px;
    scroll-margin-top: 150px;
}

.boat-day-section:last-child {
    margin-bottom: 0;
}

.boat-day-info h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.boat-day-info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.boat-day-info p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: rgba(44, 36, 22, 0.75);
}

/* ==================== ABOUT PAGE (Stacked Images with Text) ==================== */

.about-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                                rgba(44, 36, 22, 0.3) 0%,
                                rgba(44, 36, 22, 0.5) 50%,
                                rgba(44, 36, 22, 0.7) 100%);
}

.about-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 100px 40px;
}

.about-text-box {
    max-width: 800px;
    text-align: center;
    color: white;
}

.about-text-box h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
    color: white;
    letter-spacing: 1px;
}

.about-text-box p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

/* First section - adjust top spacing for header */
.about-section:first-of-type {
    margin-top: 68px;
}

/* ==================== CONTACT PAGE (Two Column Layout) ==================== */

.contact-two-column {
    margin-top: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 68px);
}

/* Left Column - Image */
.contact-image-column {
    position: relative;
}

.contact-image {
    position: sticky;
    top: 68px;
    width: 100%;
    height: calc(100vh - 68px);
    background-size: cover;
    background-position: center;
}

/* Right Column - Content */
.contact-content-column {
    background: var(--cream);
    display: flex;
    align-items: center;
}

.contact-content-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 60px;
}

/* Contact Info Block */
.contact-info-block {
    margin-bottom: 50px;
}

.contact-method-item {
    margin-bottom: 35px;
}

.contact-method-item:last-child {
    margin-bottom: 0;
}

.contact-method-item h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(44, 36, 22, 0.6);
    margin-bottom: 8px;
}

.contact-method-item p {
    margin: 0;
}

.contact-method-item a {
    font-size: 18px;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-method-item a:hover {
    color: var(--gold);
}

/* Contact Note */
.contact-note {
    background: var(--sand);
    padding: 20px 25px;
    margin-bottom: 50px;
    border-left: 3px solid var(--gold);
}

.contact-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(44, 36, 22, 0.8);
}

.contact-note strong {
    color: var(--dark);
    font-weight: 500;
}

/* Contact Separator */
.contact-separator {
    margin-bottom: 30px;
}

.contact-separator p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(44, 36, 22, 0.75);
    margin: 0;
}

/* Form Intro */
.contact-form-intro {
    margin-bottom: 40px;
}

.contact-form-intro p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(44, 36, 22, 0.7);
    margin: 0;
}

/* Simple Contact Form */
.contact-form-simple {
    width: 100%;
}

.form-group-simple {
    margin-bottom: 20px;
}

.form-group-simple input,
.form-group-simple textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--dark);
    transition: all 0.3s;
}

.form-group-simple input::placeholder,
.form-group-simple textarea::placeholder {
    color: rgba(44, 36, 22, 0.4);
}

.form-group-simple input:focus,
.form-group-simple textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group-simple textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    width: 100%;
    padding: 16px 40px;
    background: var(--dark);
    color: var(--cream);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-send:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1200px) {
    .cabins-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .itinerary-section {
        grid-template-columns: 1fr;
    }
    
    .timeline-side {
        display: none;
    }
    
    .content-wrapper {
        padding: 60px 40px;
    }
    
    .boat-route-simple .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .boat-itinerary-section {
        grid-template-columns: 1fr;
    }
    
    .boat-timeline-side {
        display: none;
    }
    
    .boat-content-wrapper {
        padding: 60px 40px;
    }
    
    /* Contact page responsive */
    .contact-two-column {
        grid-template-columns: 1fr;
    }
    
    .contact-image-column {
        display: none;
    }
    
    .contact-content-wrapper {
        padding: 60px 40px;
    }
    
    /* About page responsive */
    .about-section {
        min-height: 500px;
    }
    
    .about-text-box h2 {
        font-size: 38px;
    }
    
    .about-text-box p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header .container {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    /* Mobile Menu Toggle - Show */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation Mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        padding: 18px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    }
    
    .nav a::after {
        display: none;
    }
    
    .nav a:hover,
    .nav a.active {
        color: var(--gold);
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slider-nav {
        bottom: 100px;
    }
    
    /* Booking Forms Mobile */
    .booking-form-slider {
        padding: 0;
    }
    
    /* Show accordion toggle in mobile */
    .booking-form-toggle {
        display: block;
    }
    
    .booking-form-content.active {
        padding: 15px 0;
    }
    
    .booking-form-slider form {
        flex-direction: column;
        padding: 0 20px;
        gap: 10px;
    }
    
    .booking-form-slider input,
    .booking-form-slider button,
    .booking-form-sticky input,
    .booking-form-sticky button,
    .booking-form-boat input,
    .booking-form-boat button {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .booking-form-sticky form,
    .booking-form-boat form {
        flex-direction: column;
        padding: 0 20px;
        gap: 10px;
    }
    
    /* Fix Sticky Form on Scroll - Mobile */
    .booking-form-sticky {
        display: none; /* Hide sticky form completely on mobile */
    }
    
    /* Alternative: If you want to show it, make it minimal */
    /* Uncomment this block and comment the display: none above if you prefer a minimal sticky form
    .booking-form-sticky {
        padding: 8px 0;
    }
    
    .booking-form-sticky form {
        gap: 6px;
    }
    
    .booking-form-sticky input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .booking-form-sticky button {
        padding: 8px 16px;
        font-size: 11px;
    }
    */
    
    /* Our Story Section */
    .our-story {
        padding: 50px 0;
    }
    
    .story-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* Boats Section */
    .boat-image {
        height: 350px;
    }
    
    .boat-title {
        font-size: 36px;
    }
    
    .boat-specs {
        font-size: 13px;
    }
    
    /* Description */
    .description {
        padding: 50px 0;
    }
    
    .description p {
        font-size: 16px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .quote {
        font-size: 20px;
    }
    
    .testimonial-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    /* Cabins Grid */
    .cabin-card {
        height: 60vh;
        min-height: 400px;
    }
    
    .cabins-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cabin-card-content h3 {
        font-size: 32px;
    }
    
    .cabin-card-content p {
        font-size: 14px;
    }
    
    /* Boat Hero */
    .boat-hero-slider,
    .boat-hero-image {
        height: 50vh;
        min-height: 400px;
    }
    
    /* Contact Page */
    .contact-two-column {
        grid-template-columns: 1fr;
        margin-top: 58px;
    }
    
    .contact-image-column {
        display: none;
    }
    
    .contact-content-wrapper {
        padding: 40px 20px;
    }
    
    .contact-method-item h3 {
        font-size: 13px;
    }
    
    .contact-method-item a {
        font-size: 16px;
    }
    
    /* About Page Mobile - Mantener diseño desktop sin solapamiento */
    .about-section {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 700px !important;
        margin-bottom: 0 !important;
        overflow: hidden !important;
    }
    
    .about-section:first-of-type {
        margin-top: 58px;
    }
    
    .about-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        background-attachment: scroll !important;
    }
    
    .about-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(to bottom, 
                                    rgba(44, 36, 22, 0.5) 0%,
                                    rgba(44, 36, 22, 0.65) 50%,
                                    rgba(44, 36, 22, 0.75) 100%) !important;
    }
    
    .about-content {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 700px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1 !important;
        padding: 90px 20px !important;
    }
    
    .about-text-box {
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        color: white !important;
    }
    
    .about-text-box h2 {
        font-size: 26px !important;
        font-weight: 500 !important;
        margin-bottom: 22px !important;
        line-height: 1.3 !important;
        color: white !important;
        letter-spacing: 0.5px !important;
    }
    
    .about-text-box p {
        font-size: 14.5px !important;
        line-height: 1.8 !important;
        margin-bottom: 16px !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .about-text-box p:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Page Hero */
    .page-hero {
        height: 30vh;
        min-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    /* Itinerary Hero Video Mobile */
    .itinerary-hero-video {
        height: 40vh;
        min-height: 300px;
        margin-top: 58px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        top: 20px;
    }
    
}

/* Boats Page Mobile */
.booking-form-toggle-boat {
    display: block;
}

.booking-form-content-boat.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.booking-form-boat form {
    flex-direction: column;
    padding: 15px 20px;
}

.booking-form-boat input,
.booking-form-boat button {
    width: 100%;
}

/* Journey CTA Mobile */
.journey-cta {
    padding: 60px 0;
}

.journey-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.journey-cta > .container-narrow > p {
    font-size: 15px;
    margin-bottom: 35px;
}

.journey-highlights {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}


.highlight-item h4 {
    font-size: 16px;
}

.highlight-item p {
    font-size: 13px;
}


/* Journey CTA Mobile - at end */
@media (max-width: 768px) {
    .journey-cta {
        padding: 80px 0;
    }
    
    .journey-cta-inner {
        padding: 0 20px;
    }
    
    .journey-cta h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .journey-intro {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 50px;
    }
    
    .journey-highlights {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
        padding: 50px 0;
    }
    
    .highlight-item {
        padding: 0;
    }
    
    .highlight-item h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .highlight-item p {
        font-size: 14px;
    }
    
    .btn-large {
        padding: 16px 45px;
        font-size: 12px;
    }
    
    /* Itinerary Intro Mobile */
    .itinerary-intro {
        padding: 50px 25px 40px;
    }
    
    .itinerary-intro p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .itinerary-intro h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .itinerary-intro ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .itinerary-intro ul li {
        font-size: 14px;
    }
    
    /* Itinerary Section Mobile - Fullwidth images */
    .itinerary-section {
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
    
    .itinerary-content {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .timeline-side {
        display: none !important;
    }
    
    /* Day sections - Fullwidth */
    .day-section {
        min-height: auto !important;
        padding: 50px 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .content-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    /* Day info - matching intro/note spacing */
    .day-info {
        padding: 0 25px !important;
        max-width: 100% !important;
    }
    
    .day-info h2 {
        font-size: 28px !important;
        font-weight: 500;
        margin-bottom: 10px !important;
        padding: 0 !important;
    }
    
    .day-info h3 {
        font-size: 17px !important;
        font-weight: 500;
        margin-bottom: 18px !important;
        padding: 0 !important;
    }
    
    .day-info p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 15px !important;
        padding: 0 !important;
    }
    
    .day-highlights {
        margin-top: 20px !important;
        padding: 0 0 0 18px !important;
    }
    
    .day-highlights li {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        line-height: 1.5 !important;
        padding: 0 !important;
    }
    
    /* Itinerary Note Mobile */
    .itinerary-note {\n        padding: 50px 25px;
    }
    
    /* ========================================
       MOBILE: FOTO 100% + TEXTO SUPER LEGIBLE
       ======================================== */
    
    /* Gradient MUY SUAVE solo en parte de texto */
    .day-section::before {
        background: 
            linear-gradient(
                to bottom, 
                rgba(0, 0, 0, 0.15) 0%,        /* Capa oscura arriba */
                rgba(0, 0, 0, 0.15) 40%,       /* Capa oscura continúa */
                rgba(0, 0, 0, 0.35) 70%,       /* Más oscuro */
                rgba(0, 0, 0, 0.7) 100%        /* Muy oscuro donde está texto */
            ) !important;
    }
    
    /* Texto ARRIBA - No al final */
    .day-section {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        min-height: 70vh !important;
    }
    
    /* Texto PEGADO ARRIBA - Mucho espacio abajo */
    .day-info {
        position: relative !important;
        z-index: 2 !important;
        padding: 10px 25px 100px !important;
    }
    
    /* Títulos - medio punto más chicos */
    .day-info h2 {
        color: white !important;
        font-size: 23px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        text-shadow: none !important;
        margin-bottom: 8px !important;
    }
    
    .day-info h3 {
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        text-shadow: none !important;
        margin-bottom: 18px !important;
    }
    
    /* PÁRRAFOS - medio punto más chico */
    .day-info p {
        color: white !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 1.7 !important;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6) !important;
        margin-bottom: 15px !important;
    }
    
    .itinerary-note h3 {
        font-size: 20px;
    }
    
    .itinerary-note p {
        font-size: 14px;
    }
}



/* Day-specific background images */








/* Overlay para cada día */
.day-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to bottom, 
            rgba(0, 0, 0, 0.15) 0%,        /* Capa oscura arriba */
            rgba(0, 0, 0, 0.15) 60%,       /* Capa oscura continúa */
            rgba(0, 0, 0, 0.5) 85%,        /* Más oscuro */
            rgba(0, 0, 0, 0.75) 100%       /* Muy oscuro donde está texto */
        );
    z-index: 1;
}

.day-section {
    position: relative;
}

/* Textos BLANCOS en desktop */
.day-info h2 {
    color: white;
}

.day-info h3 {
    color: rgba(255, 255, 255, 0.95);
}

.day-info p {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.day-info {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    max-width: 700px;
}







#day1 {
    background-image: url('../img/it1.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

#day2 {
    background-image: url('../img/it2.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

#day3 {
    background-image: url('../img/it3.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

#day4 {
    background-image: url('../img/it4.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

#day5 {
    background-image: url('../img/it5.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

#day6 {
    background-image: url('../img/it6.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

#day7 {
    background-image: url('../img/it7.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

#day8 {
    background-image: url('../img/it8.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}
/* Modern Hero Title System - All Pages */
.page-hero {
    position: relative;
    height: 65vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
    animation: heroFadeIn 1.2s ease-out;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.page-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .page-hero-content {
        padding: 0 25px;
    }
    
    .page-hero-title {
        font-size: 42px;
        letter-spacing: 1px;
    }
    
    .page-hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .page-hero-description {
        font-size: 14px;
    }
}
/* Vogue Font Import */
@import url('https://fonts.cdnfonts.com/css/vogue');

/* Hero Title con Vogun Bold - Para index */
.hero-brand-title {
    font-family: 'Vogun', 'Cormorant Garamond', serif;
    font-size: 90px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: -10px;
    line-height: 1;
    color: white;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.5);
}

.hero-brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    font-stretch: condensed;
    line-height: 1.4;
}

.hero-brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: white;
    position: absolute;
    bottom: 105px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 11;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-brand-title {
        font-size: 52px;
        letter-spacing: -1px;
    }
    
    .hero-brand-subtitle {
        font-size: 12px;
        letter-spacing: 0.8px;
        font-weight: 600;
    }
    
    .hero-brand-tagline {
        font-size: 13px;
        bottom: 60px;
        padding: 0 20px;
    }
}

/* ==========================================
   BOAT GALLERY SECTION
   ========================================== */

.boat-gallery {
    padding: 80px 0;
    background: var(--sand);
}

.boat-gallery .container-narrow {
    text-align: center;
    margin-bottom: 50px;
}

.boat-gallery h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--dark);
}

.boat-gallery h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
}

/* Desktop: Grid de fotos */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    width: 100%;
    padding-top: 75%; /* Aspect ratio 4:3 */
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Mobile: Stack vertical fullwidth */
@media (max-width: 768px) {
    .boat-gallery {
        padding: 60px 0;
    }
    
    .boat-gallery .container-narrow {
        margin-bottom: 30px;
        padding: 0 25px;
    }
    
    .boat-gallery h2 {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .boat-gallery h3 {
        font-size: 28px;
    }
    
    .boat-gallery .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .gallery-item {
        width: 100%;
        padding-top: 120%; /* Ratio vertical para mobile */
        border-radius: 0;
    }
    
    .gallery-item:hover {
        transform: none;
    }
}

/* ==========================================
   FLEET SECTION
   ========================================== */

.fleet-section {
    padding: 80px 0;
    background: var(--sand);
}

.fleet-section .container-narrow {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-section h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--dark);
}

.fleet-section h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fleet-boat {
    background: white;
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-boat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fleet-boat-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--dark);
    font-family: 'Cormorant Garamond', serif;
}

.fleet-specs {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.8;
}

.fleet-specs p {
    margin: 8px 0;
}

.fleet-capacity {
    margin-top: 15px !important;
    font-weight: 600;
    color: var(--gold);
    font-size: 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .fleet-section {
        padding: 60px 0;
    }
    
    .fleet-section .container-narrow {
        margin-bottom: 30px;
        padding: 0 25px;
    }
    
    .fleet-section h2 {
        font-size: 12px;
    }
    
    .fleet-section h3 {
        font-size: 28px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .fleet-boat {
        padding: 30px 20px;
    }
    
    .fleet-boat-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .fleet-specs {
        font-size: 15px;
    }
    
    .fleet-capacity {
        font-size: 17px;
    }
}

/* ==========================================
