/* Custom Properties */
:root {
    --primary-color: #001531; /* Darker Navy Blue */
    --secondary-color: #203a43; /* Light Blue */
    --tertiary-color: #2c5364; /* Lighter Blue */
    --accent-gold: #f8655e; /* Coral/Red accent */
    --accent-gold-hover: #e0534d;
    --accent-turquoise: #d4af37; /* Now Gold */
    --accent-turquoise-hover: #b5952f;
    --text-primary: #333333;
    --text-secondary: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #001531;
    --white: #ffffff;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-turquoise { color: var(--accent-turquoise); }
.text-white { color: var(--white); }

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-gold { background-color: var(--accent-gold); }

.mx-auto { margin-left: auto; margin-right: auto; }

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-turquoise);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid var(--white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-text {
    color: #999999;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--text-primary);
    gap: 10px;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-links li a {
    color: var(--primary-color);
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo .logo-dark {
    display: none;
}

.navbar.scrolled .logo .logo-light {
    display: none;
}

.navbar.scrolled .logo .logo-dark {
    display: block;
}

.footer-logo {
    height: 55px !important;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-turquoise);
    transition: var(--transition);
}

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

.nav-links li a.btn-outline {
    color: var(--white);
    border-color: var(--white);
    padding: 8px 20px;
}

.nav-links li a.btn-outline::after {
    display: none;
}

.navbar.scrolled .nav-links li a.btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar.scrolled .nav-links li a.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 65vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 3s ease-in-out, transform 8s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 21, 49, 0.5), rgba(0, 21, 49, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Search Engine */
.search-engine {
    position: relative;
    margin-top: -60px;
    z-index: 20;
    padding: 0 20px;
}

.search-box {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 25px 30px;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
}

.search-field {
    flex: 1;
    min-width: 200px;
}

.search-field label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.search-field label i {
    color: var(--accent-turquoise);
}

.search-field select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #eaeaea;
    border-radius: 0;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-primary);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.search-field select:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: var(--accent-turquoise);
}

.search-button {
    flex: 0 0 auto;
}

.btn-search {
    padding: 14px 40px;
    height: 100%;
    min-height: 48px;
    border-radius: 8px;
}

/* Responsive Search additions */
@media (max-width: 992px) {
    .search-field {
        min-width: calc(50% - 15px);
    }
    .search-button {
        width: 100%;
    }
    .btn-search {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .search-field {
        min-width: 100%;
    }
    .search-engine {
        margin-top: -40px;
    }
}

/* Brand Logos Carousel */
.brand-logos {
    padding: 100px 0 60px 0;
    background-color: var(--white);
    overflow: hidden;
}

.logos-title {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.logos-carousel::before,
.logos-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.logos-carousel::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
}

.logos-carousel::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255,255,255,0) 100%);
}

.logos-track {
    display: flex;
    width: calc(390px * 10);
    animation: scrollLogos 25s linear infinite;
    align-items: center;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    width: 340px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    filter: grayscale(0%) opacity(1);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 10px 20px;
}

.logo-slide:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.logo-slide img {
    max-height: 105px;
    width: 230px;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-390px * 5)); }
}

/* Activities Horizontal Scroll */
.activities-section {
    padding: 0 0 60px;
    background-color: var(--white);
    overflow: hidden;
    width: 100%;
}

.activities-track {
    display: flex;
    width: calc(400px * 18); /* Increased width */
    animation: scrollActivities 60s linear infinite;
    gap: 15px;
}

.activities-track:hover {
    animation-play-state: paused;
}

.activity-slide {
    width: 400px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.activity-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

@keyframes scrollActivities {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-370px * 9)); } /* (width + gap) * count */
}

/* Search Results Section */
.search-results-section {
    padding: 60px 0;
    transition: opacity 0.5s ease;
}

.result-card {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.result-image {
    width: 300px;
    position: relative;
    flex-shrink: 0;
}

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

.duration-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-turquoise);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.result-content {
    flex-grow: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.naviera-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 5px;
}

.cruise-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.ship-name {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.ship-name i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.itinerary-timeline {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.timeline-dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.timeline-dates i {
    color: var(--accent-turquoise);
    margin-right: 5px;
}

.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
}

.timeline-visual .node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 60px;
}

.timeline-visual .dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    z-index: 2;
    margin-bottom: 8px;
}

.timeline-visual .node:first-child .dot,
.timeline-visual .node:last-child .dot {
    background: #ff6b6b;
}

/* Inclusions List UI */
.inclusions-container {
    display: flex;
    gap: 15px;
    margin: 15px 0 25px 0;
    flex-wrap: wrap;
}
.inclusions-main-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    background: #fcfcfc;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
}
.inclusions-extra-group {
    display: flex;
    align-items: center;
    background: #fcfcfc;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
}
.inc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
}
.inc-item.included {
    color: #333;
}
.inc-item.included i {
    color: #27ae60;
    font-size: 1.1rem;
}
.inc-item.excluded {
    color: #aaa;
    opacity: 0.5;
}
.inc-item.excluded i {
    color: #bbb;
    font-size: 1.1rem;
}

.timeline-visual .port {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}

.timeline-visual .line {
    flex-grow: 1;
    height: 2px;
    background: #e0e0e0;
    position: relative;
    top: -10px;
    margin: 0 -20px;
    z-index: 1;
}

.result-action {
    width: 280px;
    flex-shrink: 0;
    background: #fdfdfd;
    border-left: 1px dashed #e0e0e0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.pax-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.price-box {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
}

.taxes-info {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 25px;
}

.result-btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 20px;
}

@media (max-width: 992px) {
    .result-card {
        flex-direction: column;
    }
    
    .result-image {
        width: 100%;
        height: 250px;
    }
    
    .result-content {
        padding: 20px;
    }
    
    .result-action {
        width: 100%;
        border-left: none;
        border-top: 1px dashed #e0e0e0;
        text-align: center;
    }
    
    .price-box {
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 5px;
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--accent-turquoise);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.benefit-card:hover .icon-wrapper {
    background-color: var(--accent-turquoise);
    color: var(--white);
}

/* Destinations Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .card-img img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-blue {
    background-color: var(--accent-turquoise);
}

.card-content {
    padding: 30px;
}

.route {
    color: #aaaaaa;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
    text-align: right;
}

/* Experience Section */
.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.img-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.img-small {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.offset-up {
    transform: translateY(-20px);
}

.offset-down {
    transform: translateY(20px);
}

/* Process Section */
.process .section-header h2 {
    color: var(--white);
}

.process .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-icon {
    position: absolute;
    top: 18px;
    z-index: 3;
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.timeline-start {
    left: -10px;
}

.timeline-end {
    right: -10px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 0 10px var(--bg-dark);
}

.step-content h3 {
    color: var(--white);
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(0, 198, 255, 0.1);
    line-height: 1;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.client-details h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.client-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-info {
    padding-right: 40px;
}

.contact-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(32, 58, 67, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badges {
    display: flex;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.badge-item i {
    color: var(--accent-turquoise);
    font-size: 1.25rem;
}

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border-top: 5px solid var(--accent-gold);
}

.contact-form h3 {
    margin-bottom: 30px;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-turquoise);
    box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.1);
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    border-radius: 5px;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-success i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-col p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-turquoise);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-turquoise);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-turquoise);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-between p {
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* Floating WhatsApp */
.floating-wsp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wsp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
    .container-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-num {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        background-color: var(--white);
        padding: 15px 0;
        box-shadow: var(--shadow-sm);
    }
    
    .navbar .logo .logo-light {
        display: none !important;
    }
    
    .navbar .logo .logo-dark {
        display: block !important;
    }
    
    .logo {
        color: var(--primary-color);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle .bar {
        background-color: var(--primary-color);
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px;
        color: var(--primary-color) !important;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links li a.btn-outline {
        margin: 15px auto;
        width: max-content;
        border-color: var(--primary-color) !important;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .flex-between {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .img-grid {
        grid-template-columns: 1fr;
    }
    
    .img-large {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .offset-up, .offset-down {
        transform: none;
    }
}

/* Promo Tab */
.promo-tab {
    position: fixed;
    bottom: -500px;
    left: 20px;
    z-index: 1050;
    width: 320px;
    background: var(--white);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.promo-tab.show {
    bottom: 0;
}

.promo-tab img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.promo-tab a:hover img {
    transform: scale(1.03);
}

.close-promo {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.close-promo:hover {
    background: var(--accent-gold);
}

@media (max-width: 576px) {
    .promo-tab {
        width: max(calc(100% - 40px), 280px);
        left: 20px;
        right: 20px;
    }
}

/* Cruise Details Section */
.cruise-details-section {
    border-top: 1px solid #f0f0f0;
}

.details-tabs-nav {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 40px;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.details-tabs-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.tab-btn:hover {
    color: #3498db;
}

.tab-btn.active {
    color: #3498db;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

/* Tab: Mapa Styles */
.map-container-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.map-info-header {
    margin-bottom: 20px;
}

.map-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-title-box i {
    font-size: 2rem;
    color: var(--accent-turquoise);
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.map-title-box h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.map-title-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.map-iframe-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
    height: 500px;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-footer-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.map-footer-note p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-footer-note i {
    color: #3498db;
}

/* Tab: Itinerario Horizontal Styles */
.itinerary-horizontal-wrapper {
    position: relative;
    padding: 60px 0 20px;
    margin-bottom: 30px;
}

.itinerary-timeline-line {
    position: absolute;
    top: 80px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    z-index: 1;
}

.itinerary-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #3498db;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.itinerary-ship {
    position: absolute;
    top: -35px;
    left: 0%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    z-index: 3;
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.itinerary-scroll-container {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.itinerary-scroll-container::-webkit-scrollbar {
    display: none;
}

.itinerary-days-flex {
    display: flex;
    justify-content: space-between;
    min-width: 1000px;
    padding: 0 40px;
}

.itinerary-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid #ccc;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: var(--transition);
}

.itinerary-step.active .step-dot {
    border-color: #3498db;
    background: #3498db;
    transform: scale(1.2);
}

.step-content {
    transition: var(--transition);
}

.itinerary-step.active .step-content {
    transform: translateY(-5px);
}

.day-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.step-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.day-details-display {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border-left: 5px solid #3498db;
    min-height: 150px;
}

.day-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.day-card.active {
    display: block;
}

.day-card h3 {
    margin-bottom: 15px;
}

/* Tab: El Barco Styles */
.ship-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.ship-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.ship-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.ship-thumbs img {
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.ship-thumbs img:hover {
    transform: scale(1.05);
}

.specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.specs-list li i {
    color: #3498db;
    width: 20px;
    text-align: center;
}

.ship-highlights {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

.highlights-grid span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.highlights-grid span i {
    color: #2ecc71;
    margin-right: 5px;
}

/* Tab: Incluye Styles */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.inclusion-box {
    padding: 35px;
    border-radius: 16px;
    height: 100%;
}

.inclusion-box.include {
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
}

.inclusion-box.exclude {
    background: #fffafa;
    border: 1px solid #ffecec;
}

.inclusion-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.inclusion-box.include h3 i { color: #2ecc71; }
.inclusion-box.exclude h3 i { color: #e74c3c; }

.inclusion-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.inclusion-box ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ccc;
}

/* Tab: Promociones Styles */
.promos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.promo-item {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #3498db;
}

.promo-item.active-promo {
    border-left: 5px solid #3498db;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: -25px;
    background: #3498db;
    color: white;
    padding: 5px 30px;
    font-size: 0.65rem;
    font-weight: 800;
    transform: rotate(45deg);
}

.promo-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Cruise Details */
@media (max-width: 992px) {
    .ship-details-grid {
        grid-template-columns: 1fr;
    }
    .promos-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .details-tabs-nav {
        justify-content: flex-start;
        padding-bottom: 5px;
        margin-bottom: 25px;
    }
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    .promos-container {
        grid-template-columns: 1fr;
    }
}

/* Flashy Offer Elements */
.offer-tag {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.discount-sticker {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: #f1c40f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    transform: rotate(15deg);
    border: 3px dashed var(--primary-color);
}

.dcto-num {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

.dcto-text {
    font-size: 0.7rem;
    font-weight: 700;
}

.featured-offer-card {
    position: relative;
    overflow: visible !important;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.featured-offer-card .result-image {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

.featured-offer-card .result-image img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-offer-card .result-action {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .featured-offer-card .result-image {
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }
    .featured-offer-card .result-action {
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}

.featured-offer-card::before {
    content: 'TOP OFERTA';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-turquoise);
    color: white;
    padding: 2px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Featured Pricing Showcase */
.featured-price-action {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    padding: 25px !important;
}

.price-showcase {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.pax-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.featured-price {
    color: var(--primary-color);
    margin: 5px 0;
}

.featured-price .curr {
    font-size: 1rem;
    font-weight: 600;
}

.featured-price .amt {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
}

.taxes-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cabin-selector-chips {
    margin-bottom: 25px;
}

.chips-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    text-align: center;
}

.chips-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cabin-chip {
    padding: 10px 5px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.cabin-chip i {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.cabin-chip span {
    font-size: 0.7rem;
    font-weight: 800;
    color: #444;
}

.cabin-chip:hover {
    border-color: #3498db;
    background: #f0f9ff;
}

.cabin-chip.active {
    background: #3498db;
    border-color: #3498db;
}

.cabin-chip.active i,
.cabin-chip.active span {
    color: white;
}

/* Detailed Cabins Layout */
.cabins-detailed-header {
    margin: 60px 0 30px;
}

.cabins-detailed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cabin-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.cabin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cabin-card-img {
    position: relative;
    height: 200px;
}

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

.cabin-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.cabin-tag.featured {
    background: #e67e22;
}

.cabin-card-body {
    padding: 25px;
}

.cabin-card-body h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cabin-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cabin-features {
    margin-bottom: 20px;
}

.cabin-features li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cabin-price-from {
    font-size: 0.95rem;
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: var(--text-secondary);
}

.cabin-price-from strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 5px;
}

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

/* Card Highlights Grid (to fill empty space) */
.result-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.h-icon {
    width: 35px;
    height: 35px;
    background: #f0f9ff;
    color: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.h-text {
    line-height: 1.2;
}

.h-text strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.h-text span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

@media (max-width: 576px) {
    .result-highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* Cabin Selector Styles */
.cabin-selector {
    margin-top: 15px;
    margin-bottom: 15px;
}
.cabin-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    text-align: center;
}
.cabin-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.cabin-btn {
    background: #f4f7f6;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #444;
    width: 140px;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.2s ease;
}
.cabin-btn i {
    font-size: 1.1rem;
    color: #666;
    width: 22px;
    text-align: center;
    transition: color 0.2s ease;
}
.cabin-btn span {
    font-size: 0.88rem;
    font-weight: 600;
    flex: 1;
    text-align: left;
}
.cabin-btn:hover {
    background: #e9f0ef;
    color: #2185d0;
}
.cabin-btn.active {
    background: #2185d0;
    color: #fff;
}
.cabin-btn.active i {
    color: #fff;
}
.result-action .btn-primary.result-btn {
    background: #fb716d;
    border-color: #fb716d;
    font-size: 1rem;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.result-action .btn-primary.result-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* ========================================== */
/* ========================================== */
/* PULLMANTUR STYLE SEARCH ENGINE             */
/* ========================================== */

/* Sección wrapper */
.pullman-search-engine {
    background: transparent;
    position: relative;
    z-index: 100;
    margin-top: -100px; /* Sube sobre el hero */
}

.pullman-search-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- TABS ---- */
.pullman-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.pullman-tab {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    letter-spacing: 0.3px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pullman-tab:first-child {
    margin-right: 4px;
}

.pullman-tab.active {
    background: #fff;
    color: #F4614E;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.pullman-tab:not(.active):hover {
    background: rgba(255,255,255,0.28);
}

/* ---- CARD ---- */
.pullman-card {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    padding: 22px 24px 18px;
}

/* ---- TAB CONTENT ---- */
.pullman-tab-content {
    display: none;
}
.pullman-tab-content.active {
    display: block;
}

/* ---- ROWS ---- */
.pullman-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.pullman-row2 {
    border-top: 1px solid #ececec;
    margin-top: 12px;
    padding-top: 14px;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}

/* ---- FIELD ---- */
.pullman-field {
    flex: 1;
    min-width: 0;
    cursor: pointer;
    padding: 6px 14px;
    transition: background 0.15s;
    border-radius: 8px;
}

.pullman-field:hover {
    background: #f7f8fa;
}

.pullman-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pullman-label i {
    color: #F4614E;
    margin-right: 4px;
    font-size: 0.75rem;
}

.pullman-select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.pullman-val {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a2b49;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pullman-chevron {
    font-size: 0.7rem;
    color: #888;
    flex-shrink: 0;
}

/* ---- VERTICAL DIVIDER ---- */
.pullman-divider-v {
    width: 1px;
    height: 40px;
    background: #e0e3ea;
    flex-shrink: 0;
    margin: 0 2px;
}

/* ---- COPY BUTTON ---- */
.pullman-copy-btn-wrap {
    display: flex;
    align-items: center;
    padding: 0 6px;
}

.pullman-copy-btn {
    background: #f2f4f7;
    border: 1px solid #dde1ea;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    color: #555;
    font-size: 0.85rem;
}

.pullman-copy-btn:hover {
    background: #e5e8f0;
}

/* ---- ACTIONS ---- */
.pullman-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 16px;
}

.pullman-btn-clear {
    background: none;
    border: none;
    color: #F4614E;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s;
}

.pullman-btn-clear:hover {
    opacity: 0.75;
}

.pullman-btn-search {
    background: #F4614E;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(244,97,78,0.3);
}

.pullman-btn-search:hover {
    background: #E04E3C;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244,97,78,0.4);
}

.pullman-btn-search:active {
    transform: translateY(0);
}

/* ---- PANEL WRAPPERS (heredados) ---- */
.msc-panels-wrapper {
    position: relative;
    width: 100%;
}
.msc-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    color: #333;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    min-height: 200px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Destinations Panel Grid */
.msc-grid-destinations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.msc-card-dest {
    cursor: pointer;
    transition: transform 0.2s ease;
}
.msc-card-dest:hover {
    transform: translateY(-5px);
}
.msc-card-dest img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}
.msc-card-title {
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Ports Panel Layout */
.msc-ports-layout {
    display: flex;
    flex-direction: column;
}
.msc-ports-all {
    font-size: 1.1rem;
    margin-bottom: 20px;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.msc-ports-all:hover {
    color: #F4614E;
}
.msc-ports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.msc-port-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    border-bottom: 2px solid #040b2e;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.msc-port-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.msc-port-col ul li {
    font-size: 0.85rem;
    padding: 5px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}
.msc-port-col ul li:hover {
    color: #F4614E;
    text-decoration: underline;
}

/* Dates & Brands Panel Grid */
.msc-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}
.msc-date-item {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.msc-date-item:hover {
    background: #F4614E;
    color: white;
    border-color: #F4614E;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .pullman-field {
        padding: 6px 8px;
    }
    .pullman-val {
        font-size: 0.82rem;
    }
}

@media (max-width: 900px) {
    .pullman-search-engine {
        margin-top: 0;
    }
    .pullman-card {
        border-radius: 12px;
        padding: 16px 12px;
    }
    .pullman-row,
    .pullman-row2 {
        flex-direction: column;
        align-items: stretch;
    }
    .pullman-divider-v {
        display: none;
    }
    .pullman-field {
        border-bottom: 1px solid #ececec;
        padding: 10px 8px;
        border-radius: 0;
    }
    .pullman-actions {
        margin-left: 0;
        padding-left: 0;
        padding-top: 14px;
        width: 100%;
        justify-content: flex-end;
    }
    .pullman-row2 {
        margin-top: 0;
        border-top: none;
        padding-top: 0;
    }
    .pullman-copy-btn-wrap {
        display: none;
    }
    .msc-ports-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ========================================== */
/* CRUISE DETAILS MODAL / DRAWER */
/* ========================================== */

.cruise-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 21, 49, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.cruise-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cruise-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 600px;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.cruise-modal.active {
    right: 0;
}

.cruise-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: white;
}

.cruise-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.close-modal-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal-btn:hover {
    color: var(--accent-gold);
}

.cruise-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 30px 0;
}

.modal-hero {
    position: relative;
    width: 100%;
    height: 300px;
}

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

.modal-flight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none; /* hidden by default, shown by JS if true */
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.modal-section {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.modal-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.modal-route-map {
    width: 100%;
    height: 300px;
    background: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none; /* Shown by JS if active */
    z-index: 1; /* Keep leaflet controls below modal overlay */
}

.modal-route-timeline {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    padding: 15px 0 15px 0;
    position: relative;
    gap: 15px;
    scrollbar-width: thin;
}
.modal-route-timeline::-webkit-scrollbar {
    height: 6px;
}
.modal-route-timeline::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.modal-route-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 20px; /* Aligned with dots */
    height: 2px;
    width: auto;
    background: #e0e0e0;
}
.route-stop {
    position: relative;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
    z-index: 1;
}
.route-stop::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 2px solid white;
    margin-bottom: 8px;
    box-shadow: 0 0 0 2px var(--white); /* fake border for gap over line */
}
.route-stop i {
    display: none; /* Hide anchor to keep it clean */
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modal-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.modal-list li::before {
    content: '•';
    color: var(--text-secondary);
}

.modal-text-sm {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

.text-success { color: #2ecc71; }
.text-danger { color: #e74c3c; }

.cruise-modal-footer {
    padding: 20px 30px;
    background: white;
    border-top: 1px solid #eee;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.02);
}

/* New Buttons on Result Cards */
.result-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.result-action-buttons .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.9rem;
    text-align: center;
}
.btn-details {
    background-color: var(--tertiary-color);
    color: white;
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
}
.btn-details:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    .modal-hero {
        height: 200px;
    }
    .result-action-buttons {
        flex-direction: column;
    }
}
