/* =========================
   PAGE HERO (shared banner style)
========================= */

.page-hero {
    position: relative;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 170px 0 90px;
    overflow: hidden;
}

.page-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 1, 1, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

.page-hero-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 18px;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    color: var(--white-color);
    margin-bottom: 20px;
}

.page-hero-content h1 em {
    font-style: italic;
    color: var(--primary-color);
}

.page-hero-line {
    width: 70px;
    height: 2px;
    background: var(--white-color);
    opacity: 0.6;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .page-hero {
        min-height: 320px;
        padding: 130px 0 70px;
    }

    .page-hero-content h1 {
        font-size: 34px;
    }
}

/* =========================
   WAVE TRANSITIONS
========================= */

.wave-transition-container {
    line-height: 0;
}

.wave-transition {
    width: 100%;
    height: 60px;
    display: block;
}

.wave-transition.fill-cream path {
    fill: #f5f2eb;
}

.wave-transition.fill-pearl path {
    fill: #f3efe8;
}

.wave-transition.fill-dark-blue path {
    fill: var(--secondary-color-dark);
}

/* =========================
   SHARED SECTION TITLE/TAG
   (used directly on <h2>/<span>, page-scoped)
========================= */

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

h2.section-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--primary-color);
    margin-top: 6px;
}

h2.section-title.text-dark {
    color: #1a1a1a;
}

h2.section-title em {
    font-style: italic;
    color: var(--primary-color);
}

h2.section-title.text-dark em {
    color: var(--primary-color);
}

/* =========================
   CRUISE SELECTION GRID
========================= */

.cruises-list-section {
    background: var(--secondary-color-dark);
    padding: 100px 0 90px;
}

.cruises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cruise-item-card {
    display: block;
    background: var(--white-color);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.cruise-item-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0000, #010101, #0000);
    transition: width 0.5s ease;
}

.cruise-item-card:hover::after {
    width: 100%;
}

.cruise-item-image {
    overflow: hidden;
    width: 100%;
}

.cruise-item-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.cruise-item-card:hover .cruise-item-image img {
    transform: scale(1.08);
}

.cruise-item-content {
    padding: 24px;
}

.cruise-item-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 6px;
}

.cruise-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-size: 26px;
    color: var(--secondary-color-dark);
}

.price-text {
    font-size: 13px;
    color: #8b8989;
}

.view-details-link {
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.cruise-item-card:hover .view-details-link {
    text-decoration: underline;
}

/* =========================
   CRUISE DETAIL
========================= */

.cruise-detail-page-body {
    background: #f5f2eb;
}

.cruise-detail-hero {
    min-height: 430px;
}

.cruise-detail-section {
    background: #f5f2eb;
    padding: 58px 0 96px;
}

.cruise-detail-back {
    display: inline-block;
    color: var(--secondary-color-dark);
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cruise-detail-back:hover {
    color: var(--primary-color);
}

.cruise-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 48px;
    align-items: start;
}

.cruise-detail-copy {
    max-width: 760px;
}

.cruise-detail-copy p {
    color: var(--secondary-color-dark);
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 18px;
}

.cruise-detail-panel {
    background: #fff;
    border: 1px solid #e6e1d6;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 12px 34px rgba(24, 42, 58, 0.08);
}

.cruise-detail-panel h3 {
    margin: 0 0 18px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
}

.cruise-detail-row {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid #eee8de;
}

.cruise-detail-row span {
    color: #6f685c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cruise-detail-row strong {
    color: var(--secondary-color-dark);
    font-size: 15px;
}

.cruise-detail-panel .mobile-action-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .cruise-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================
   EXPERIENCE INTRO
========================= */

.experience-intro-section {
    background: #f5f2eb;
    padding: 100px 0;
}

.experience-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.experience-intro-media {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(24, 42, 58, 0.12);
}

.experience-intro-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.experience-intro-text {
    margin-top: 40px;
    text-align: left;
}

.experience-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary-color-dark);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .experience-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .experience-intro-media img {
        height: 320px;
    }
}

/* =========================
   VISUAL DIVIDER
========================= */

.visual-divider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 50px 20px;
    background: #f5f2eb;
}

.visual-divider-section .h-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, #0000, #010101, #0000);
}

.visual-divider-section .diamond-icon {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* =========================
   COMPARE CRUISES
========================= */

.compare-cruises-section {
    background: #fff;
    padding: 100px 0;
}

.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 20px 22px;
    text-align: center;
    border-bottom: 1px solid #e6e1d6;
}

.compare-table thead th {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    background: #f5f2eb;
}

.compare-table thead th:first-child {
    background: transparent;
}

.compare-table .feature-label {
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color-dark);
    white-space: nowrap;
}

.compare-table td {
    font-size: 15px;
    color: var(--secondary-color-dark);
}

.compare-table .price-val {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.compare-table .price-val span {
    display: block;
    font-size: 12px;
    color: #8b8989;
    font-weight: 400;
}

.table-action-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s ease;
}

.table-action-btn:hover {
    background: var(--primary-color-50);
    color: var(--white-color);
}

/* Mobile compare cards */

.mobile-cards-compare {
    display: grid;
    gap: 20px;
}

.mobile-compare-card {
    background: #f5f2eb;
    border-radius: 8px;
    padding: 26px 24px;
}

.mobile-compare-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 6px;
}

.mobile-compare-card .desc {
    font-size: 14px;
    font-style: italic;
    color: var(--secondary-color-dark);
    margin-bottom: 16px;
}

.compare-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.compare-details li {
    font-size: 14px;
    color: var(--secondary-color-dark);
    line-height: 1.8;
}

.card-footer-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e6e1d6;
}

.card-footer-pricing .price {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.card-footer-pricing .price span {
    font-size: 12px;
    color: #8b8989;
    font-weight: 400;
}

.mobile-action-btn {
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}

/* =========================
   WHAT'S INCLUDED
========================= */

.cruises-included-section {
    background: #f3efe8;
    padding: 100px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-top: 20px;
}

.included-item-box {
    text-align: center;
    background: var(--white-color);
    border-radius: 8px;
    padding: 36px 24px;
}

.included-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f2eb;
    border-radius: 50%;
}

.included-icon-wrapper img {
    width: 30px;
}

.included-item-box h3 {
    font-size: 19px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 10px;
}

.included-item-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--secondary-color-dark);
}

/* =========================
   FAQ
========================= */

.faq-section {
    background: #f5f2eb;
    padding: 100px 0;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #dcd6c8;
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 4px;
    font-size: 17px;
    color: var(--secondary-color-dark);
    cursor: pointer;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 4px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-color-dark);
}

.faq-item.active .faq-toggle {
    color: var(--primary-color);
}

/* =========================
   MEETING AND PICKUP
========================= */

.pickup-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 60px;
    border: 1px solid rgba(24, 151, 222, 0.08);
    transition: box-shadow 340ms ease;
}

.pickup-card:hover {
    box-shadow: 0 14px 36px rgba(24, 42, 58, 0.1);
}

.pickup-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 24px 28px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color-dark);
    transition: color 280ms ease, background-color 280ms ease;
}

.pickup-toggle:hover,
.pickup-toggle:focus-visible {
    color: var(--primary-color);
    background: rgba(24, 151, 222, 0.035);
}

.pickup-toggle i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pickup-body {
    padding: 0 28px 28px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, padding 380ms ease;
}

.pickup-card.collapsed .pickup-body {
    max-height: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.pickup-card.collapsed .pickup-toggle i {
    transform: rotate(180deg);
}

.pickup-start,
.pickup-end {
    font-size: 15px;
    color: var(--secondary-color-dark);
    margin-bottom: 20px;
}

.pickup-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pickup-list > li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), background-color 300ms ease;
}

.pickup-list > li:first-child {
    border-top: none;
}

.pickup-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eaf5fc;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), background-color 300ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .pickup-list > li:hover {
        transform: translate3d(4px, 0, 0);
        background: rgba(24, 151, 222, 0.025);
    }

    .pickup-list > li:hover .pickup-icon {
        transform: scale(1.08);
        background: #dff1fb;
    }
}

.pickup-item-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color-dark);
    margin-bottom: 6px;
}

.pickup-item-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.pickup-sub-list {
    list-style: disc;
    padding-left: 18px;
    margin-top: 8px;
}

.pickup-sub-list li {
    font-size: 14px;
    color: #666;
}

.pickup-tripadvisor-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 6px;
}

.pickup-tripadvisor-link:hover {
    text-decoration: underline;
}

/* =========================
   CONTACT FORM WRAP (right column of shared contact-section)
========================= */

.contact-form-wrap {
    width: 100%;
}

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

@media (max-width: 992px) {
    .cruises-grid {
        grid-template-columns: 1fr 1fr;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cruises-list-section,
    .experience-intro-section,
    .compare-cruises-section,
    .cruises-included-section,
    .faq-section {
        padding: 70px 0;
    }

    .cruises-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    h2.section-title {
        font-size: 28px;
    }

    .pickup-card {
        margin-top: 40px;
    }

    .pickup-toggle {
        padding: 18px 20px;
        font-size: 16px;
    }

    .pickup-body {
        padding: 0 20px 20px;
    }

    .pickup-list > li {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pickup-card,
    .pickup-toggle,
    .pickup-toggle i,
    .pickup-body,
    .pickup-list > li,
    .pickup-icon {
        transition: none;
    }
}
