.package-plans {
    padding: 60px 0;
    background-image: linear-gradient(to right, #f0f5fa, #e4edf7);
}
.package-title {
    text-align: center;
    margin-bottom: 50px;
}
.package-title h2 {
    font-size: 36px;
    color: #1f5c99;
    font-weight: bold;
    margin-bottom: 15px;
}

.title-desc {
    font-size: 18px;
    color: #6b6b6b;
}
.package-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 10px;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.package-header {
    background: #1f5c99;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}
.package-name {
    font-size: 20px;
    font-weight: bold;
}
.package-price {
    font-size: 28px;
    font-weight: bold;
    color: #ff6600;
    margin-top: 20px;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}
.package-price small {
    font-size: 16px;
    font-weight: normal;
}
.package-content {
    padding: 30px 20px;
}
.package-features {
    margin-bottom: 20px;
}
.package-features h4 {
    font-size: 18px;
    color: #1f5c99;
    margin-bottom: 15px;
    font-weight: bold;
}
.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-features ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #333;
}
.package-features ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #39a2ec;
}
.package-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e4edf2;
}
.package-btn {
    display: inline-block;
    width: 184px;
    height: 46px;
    line-height: 40px;
    font-size: 16px;
    color: #1f5c99;
    font-weight: bold;
    text-align: center;
    border: 3px solid #39a2ec;
    border-radius: 12px;
    background: #e1f2fa;
    text-decoration: none;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}
.package-btn:hover {
    background: #1f5c99;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(31, 92, 153, 0.3);
}
.package-discount {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    margin-top: 50px;
    border: 1px solid #e4edf2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}
.package-discount h3 {
    font-size: 20px;
    color: #1f5c99;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.discount-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    justify-content: center;
}
.discount-item {
    flex: 0 0 30%;
    padding: 20px 15px;
    margin: 0 10px 10px;
    text-align: center;
    background: #f8fbfe;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.discount-item:hover {
    background: #f0f7fd;
}
.discount-icon {
    font-size: 36px;
    color: #1f5c99;
    margin-bottom: 15px;
}
.discount-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}
.discount-percent {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #39a2ec;
    margin: 10px 0;
}
.discount-highlight {
    margin-top: 20px;
    padding: 12px 15px;
    text-align: center;
    font-weight: 500;
    color: #1f5c99;
    font-size: 20px;
    width: 100%;
}
.discount-highlight i {
    color: #1f5c99;
    margin-right: 5px;
}
.optional-addon {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}
.optional-addon h5 {
    font-weight: bold;
    color: #1f5c99;
    margin-bottom: 10px;
}
.single-day-options {
    margin-bottom: 15px;
}
.single-day-options .day-option {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e4edf2;
}
.single-day-options .day-option:last-child {
    border-bottom: none;
}

.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}
.equal-height .col-md-4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.equal-height .package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.equal-height .package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.equal-height .package-features, 
.equal-height .package-note,
.equal-height .optional-addon,
.equal-height .single-day-options {
    flex: 0 0 auto;
}
.equal-height .package-price {
    margin-top: auto;
}

@media (max-width: 991px) {
    .discount-item {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .package-plans {
        padding: 30px 0;
    }
    .package-card {
        margin-bottom: 30px;
    }
} 