/* Shared Houseboats Section */
.shared-houseboats-section {
    background: linear-gradient(135deg, #F7F7F7 0%, #E1E4E5 100%);
    position: relative;
    overflow: hidden;
}

.shared-houseboats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(99, 171, 69, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.shared-houseboats-section .container {
    position: relative;
    z-index: 1;
}

.shared-houseboats-section .section-title p {
    color: #687179;
    font-size: 16px;
    line-height: 1.8;
}

/* Details Card */
.shared-details-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #63AB45;
}

.details-header {
    margin-bottom: 20px;
}

.details-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0A1F24;
    display: flex;
    align-items: center;
    gap: 12px;
}

.details-header h3 i {
    color: #63AB45;
    font-size: 28px;
}

.details-content p {
    font-size: 16px;
    color: #687179;
    line-height: 1.8;
    margin-bottom: 15px;
}

.details-content p:last-child {
    margin-bottom: 0;
}

/* Shared Houseboat Cards */
.shared-houseboat-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shared-houseboat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.deluxe-card .card-header {
    background: linear-gradient(135deg, #63AB45 0%, #113D48 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.premium-card .card-header {
    background: linear-gradient(135deg, #113D48 0%, #0A1F24 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    backdrop-filter: blur(10px);
}

.card-header h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
}

.card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Price Section */
.price-section {
    text-align: center;
    padding: 25px 0;
    border-bottom: 2px solid #E1E4E5;
    margin-bottom: 25px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #63AB45;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #0A1F24;
}

.period {
    font-size: 16px;
    color: #687179;
    font-weight: 500;
}

.price-note {
    font-size: 14px;
    color: #687179;
    margin: 0;
}

/* Includes Section */
.includes-section {
    margin-bottom: 25px;
}

.includes-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.includes-section h4 i {
    color: #63AB45;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #687179;
    line-height: 1.6;
}

.includes-list li i {
    color: #63AB45;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Features Section */
.features-section {
    background: #F7F7F7;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.features-section p {
    margin: 0;
    font-size: 14px;
    color: #687179;
    line-height: 1.6;
}

.features-section strong {
    color: #0A1F24;
}

/* Peak Season Alert */
.peak-season-alert {
    background: #FFF4E6;
    border-left: 4px solid #FF9800;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-icon i {
    font-size: 24px;
    color: #FF9800;
}

.alert-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0A1F24;
    margin-bottom: 8px;
}

.alert-content p {
    font-size: 13px;
    color: #687179;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shared-details-card {
        padding: 25px 20px;
    }

    .card-header {
        padding: 25px 20px !important;
    }

    .card-header h3 {
        font-size: 22px;
    }

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

    .amount {
        font-size: 36px;
    }

    .peak-season-alert {
        flex-direction: column;
        gap: 10px;
    }

    .shared-houseboats-section .text-center .theme-btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .shared-houseboats-section .text-center .theme-btn.ms-3 {
        margin-left: 0 !important;
    }
}

