  .tour-plan-wrapper {
    position: relative;
    padding-left: 0px;
    margin-top: 20px;
}

/* Plan Card */
.plan-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.plan-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Header */
.plan-header {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    background: #f9fafc;
    transition: 0.3s;
}

.plan-header:hover {
    background: #f1f5ff;
}

/* Icon */
.plan-header .icon {
    width: 40px;
    height: 40px;
    background: #843e5b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Title */
.day-title {
    font-weight: 600;
    font-size: 16px;
}

/* Toggle icon */
.plan-header i.ms-auto {
    font-size: 14px;
    transition: transform 0.3s;
}

/* Rotate icon when open */
.plan-header:not(.collapsed) i.ms-auto {
    transform: rotate(45deg);
}

/* Plus → Minus */
.plan-header[aria-expanded="true"] .fa-plus::before {
     content: "\f068"; /* minus icon */
}

/* Body */
.plan-body {
    padding: 20px;
    border-top: 1px solid #eee;
    color: #6c757d;
}

.plan-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.plan-body strong {
    color: #000;
}

/* Image Section */
.service-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Overlay */
.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.img-overlay h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
     color: white;
}

.img-overlay h2 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
    color: white;
}

/* Page Content */
.page-content {
    padding-top: 20px;
}

.box-title {
    font-size: 30px;
    font-weight: 700;
}

.page-title {
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.box-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.sticky-form {
    position: sticky;
    top: 100px; /* adjust based on header height */
}

/* Make it look premium */
.sticky-form .card {
    border-radius: 12px;
}

.sticky-form h5 {
    font-weight: 600;
}


@media (max-width: 991px) {
    .sticky-form {
        position: relative;
        top: auto;
        margin-top: 30px;
    }
}

.sticky-form .card {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.sticky-form button {
    background: #843e5b;
    border: none;
    transition: 0.3s ease;
}

.sticky-form button:hover {
    background: #9a5570; /* lighter shade */
}

.swal-custom-btn {
    background: #843e5b !important;
    color: #fff !important;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
}

.swal-custom-btn:hover {
    background: #9a5570 !important;
}

.btn-primary {
    background-color: #843e5b !important;
    border-color: #843e5b !important;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
    background-color: #9a5570 !important;
    border-color: #9a5570 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Remove unwanted borders/backgrounds */
.service-img,
.carousel,
.carousel-inner,
.carousel-item {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: hidden;
    border-radius: 20px;
}

/* Image */
.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Remove Bootstrap default control background */
.carousel-control-prev,
.carousel-control-next {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    width: 50px;
}

/* Remove hidden default overlay */
.carousel-control-prev::after,
.carousel-control-next::after,
.carousel-control-prev::before,
.carousel-control-next::before {
    display: none !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    background: transparent !important;
    border: none !important;
    opacity: 1;
}

/* Remove Bootstrap default icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    width: 32px;
    height: 32px;
    position: relative;
}

/* Left Arrow */
.carousel-control-prev-icon::after {
    content: '\2039';
    font-size: 45px;
    color: #843e5b;
    font-weight: 700;
}

/* Right Arrow */
.carousel-control-next-icon::after {
    content: '\203A';
    font-size: 45px;
    color: #843e5b;
    font-weight: 700;
}

/* Caption */
.custom-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    text-align: center;
    width: 100%;
    background: transparent !important;
}

.custom-caption h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.custom-caption h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

/* Optional smooth slide */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.tour-banner-content {
    text-align: left;
    padding-left: 5px;
}

.tour-banner-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.tour-banner-content h2 {
    font-size: 20px;
    font-weight: 500;
    color: #843e5b;
}