/* ==========================================================================
   CRUISES PAGE SPECIFIC STYLES - SILVER MOON PARITY
   ========================================================================== */

/* Page Background Colors */
.cruises-page-body {
    background-color: #ffffff;
}

/* Hero Banner */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 29, 40, 0.45); /* Dark ocean overlay */
    z-index: 1;
}

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

.page-hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffd700; /* gold */
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.page-hero h1 {
    font-family: var(--primary-font);
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
}

.page-hero h1 em {
    font-style: italic;
    color: #ffd700;
}

.page-hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 20px auto 0 auto;
}

/* Cruise Cards List (Dark Slate Section) */
.cruises-list-section {
    padding: 90px 0;
    background-color: #0b2230; /* Match Silver Moon Ocean Dark Theme */
    color: var(--white-color);
}

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

.cruise-item-card {
    background: rgba(15, 43, 60, 0.5); /* Semi-translucent dark slate */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.cruise-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.cruise-item-image {
    height: 240px;
    overflow: hidden;
}

.cruise-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.cruise-item-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cruise-item-content h3 {
    font-family: var(--primary-font);
    font-size: 24px;
    color: var(--white-color);
    margin-bottom: 8px;
    font-weight: 300;
}

.cruise-item-content .subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 24px;
}

.cruise-card-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-family: var(--primary-font);
    font-size: 32px;
    color: #ffd700;
    line-height: 1;
}

.price-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.view-details-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd700;
    transition: color 0.3s;
}

.cruise-item-card:hover .view-details-link {
    color: var(--white-color);
}

/* Wave transitions */
.wave-transition-container {
    line-height: 0;
    width: 100%;
    margin-top: -1px;
}

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

.fill-cream {
    fill: #fdfaf6;
    background-color: transparent;
}

.fill-pearl {
    fill: #f4f7f9;
    background-color: transparent;
}

.fill-dark-blue {
    fill: var(--primary-color);
    background-color: transparent;
}

/* Experience Intro (Beige background) */
.experience-intro-section {
    padding: 80px 0;
    background-color: #fdfaf6; /* Classic cream */
}

.experience-intro-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.section-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #a4823c; /* Warm gold-brown */
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--secondary-color);
}

.section-title em {
    font-style: italic;
    color: #a4823c;
}

.gold-line {
    width: 60px;
    height: 1px;
    background-color: #a4823c;
    margin: 25px auto;
}

.experience-intro-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* Visual Divider */
.visual-divider-section {
    background-color: #fdfaf6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.visual-divider-section .h-line {
    width: 40px;
    height: 1px;
    background-color: rgba(164, 130, 60, 0.4);
}

.visual-divider-section .diamond-icon {
    width: 6px;
    height: 6px;
    border: 1px solid rgba(164, 130, 60, 0.6);
    transform: rotate(45deg);
    margin: 0 10px;
}

/* Compare Section (White background) */
.compare-cruises-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.compare-table-wrapper {
    margin-top: 40px;
    border-radius: 4px;
    border: 1px solid #e5e9ec;
    overflow: hidden;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: center;
    background: #ffffff;
}

.compare-table th, .compare-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e9ec;
    border-right: 1px solid #e5e9ec;
}

.compare-table th:last-child, .compare-table td:last-child {
    border-right: none;
}

.compare-table th {
    background: #0b2230;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 300;
    padding: 24px;
}

.compare-table th:first-child {
    background: #ffffff;
    border-right: 1px solid #e5e9ec;
    border-bottom: 1px solid #e5e9ec;
}

.compare-table td.feature-label {
    text-align: left;
    font-weight: 700;
    color: var(--secondary-color-dark);
    background: #fafbfc;
    width: 20%;
}

.price-val {
    font-family: var(--primary-font);
    font-size: 26px;
    color: #a4823c;
    font-weight: 300;
}

.price-val span {
    font-size: 12px;
    color: #888;
}

.table-action-btn {
    display: inline-block;
    border: 1px solid #a4823c;
    color: #a4823c;
    background: transparent;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
}

.table-action-btn:hover {
    background: #a4823c;
    color: #ffffff;
}

/* Mobile compare section */
.mobile-cards-compare {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.mobile-compare-card {
    background: #fdfaf6;
    border: 1px solid #e5e9ec;
    border-radius: 6px;
    padding: 25px;
}

.mobile-compare-card h3 {
    font-family: var(--primary-font);
    font-size: 22px;
    color: #0b2230;
    margin-bottom: 4px;
}

.mobile-compare-card .desc {
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-bottom: 18px;
}

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

.compare-details li {
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #444;
}

.compare-details li:last-child {
    border-bottom: none;
}

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

.card-footer-pricing .price {
    font-family: var(--primary-font);
    font-size: 24px;
    color: #a4823c;
}

.card-footer-pricing .price span {
    font-size: 12px;
    color: #777;
}

.mobile-action-btn {
    display: inline-block;
    background: #0b2230;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

/* Included section (Pearl background) */
.cruises-included-section {
    padding: 90px 0;
    background-color: #f4f7f9; /* Pearl */
}

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

.included-item-box {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e9ec;
    border-radius: 6px;
    padding: 35px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.included-item-box:hover {
    transform: translateY(-4px);
}

.included-icon-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.included-icon-wrapper img {
    height: 50px;
}

.included-item-box h3 {
    font-family: var(--primary-font);
    font-size: 18px;
    color: #0b2230;
    margin-bottom: 10px;
    font-weight: 400;
}

.included-item-box p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* FAQ Accordion (Cream background) */
.faq-section {
    padding: 90px 0;
    background-color: #fdfaf6;
}

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

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e9ec;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0b2230;
    cursor: pointer;
}

.faq-icon {
    font-size: 14px;
    color: #a4823c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLES)
   ========================================================================== */

@media (max-width: 992px) {
    .cruises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .cruises-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-hero {
        height: 50vh;
    }
    
    .page-hero h1 {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 32px;
    }
}
