
        :root {
            --primary-color: #bb2828;
            --secondary-color: #2c3e50;
            --accent-color: #f39c12;
            --light-bg: #f8f9fa;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --info-color: #17a2b8;
            --warning-color: #ffc107;
        }
        .packageDetailCntr{
            max-width: 96%;
        }
        .btn-outline-primary{
            border-color: var(--primary-color);
            color:  var(--primary-color);
        }
        .btn-primary:hover {
    color: #fff;
    background-color:var(--primary-color)!important;
    border-color: var(--primary-color)!important;
}
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/placeholder.svg?height=400&width=1200');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .booking-form {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border: 1px solid #e9ecef;
        }
        .booking-form h4{
                background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                color: #fff;
                padding: 10px 15px;
                font-weight: 700;
                border-radius: 10px 10px 0 0;
        }
        .booking-form form{
            padding: 0px 20px 0px 20px;
        }
        
        .form-control {
               border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 8px 15px;
    transition: all 0.3s ease;
    height: auto;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }
        
        .booking-form .wpcf7-submit {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border: none;width: 100%;
            border-radius: 8px;
            padding: 12px 30px;
            font-weight: bold;color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }.booking-form textarea{
            height: 80px;
        }
        
        .booking-form .wpcf7-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        
        .package-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: 1px solid #e9ecef;
        }
        
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .package-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .package-price {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
        }
        label {
    width: 100%;
	color:#000;
}
        .package-content {
           padding: 15px 20px;
        }
        
        .package-title {
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 18px;
    margin-bottom: 0px;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
        }
        
        .package-features li {
            padding: 5px 0;
            color: #666;font-size: 13px;
        }
        
        .package-features li i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px auto;
        }
        
        
        
       

        /* Enhanced content section styling */
        .content-section {
            scroll-margin-top: 100px;
            margin-bottom: 3rem;
        }

        .content-section h2, .content-section h3, .content-section h4 {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .main-info {
            background: linear-gradient(135deg, #fff9f5, #fef7f0);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid #ffe4d6;
            margin-bottom: 2rem;
        }

        .main-info img {
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .main-info img:hover {
            transform: scale(1.02);
        }

        .main-info ul {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-color);
        }

        .main-info ul li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }

        .main-info ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
            font-size: 16px;
        }


        /* Enhanced inclusions section styling */
        .include {
            background: linear-gradient(135deg, #f0fff4, #e8f5e8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid #d4edda;
            margin-bottom: 2rem;
        }

        .include h4 {
            color: var(--success-color) !important;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .include h4::before {
            content: '✅';
            font-size: 1.5rem;
        }

        .include ul {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--success-color);
        }

        .include ul li {
            padding: 10px 0;
            border-bottom: 1px solid #f8f9fa;
            position: relative;
            padding-left: 30px;
            font-size: 14px;
            line-height: 1.6;
        }

        .include ul li:last-child {
            border-bottom: none;
        }

        .include ul li::before {
            content: '✔️';
            position: absolute;
            left: 0;
            font-size: 16px;
        }

        /* Enhanced exclusions section styling */
        .exclude {
            background: linear-gradient(135deg, #fff5f5, #fef2f2);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid #fecaca;
            margin-bottom: 2rem;
        }

        .exclude h4 {
            color: var(--danger-color) !important;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .exclude h4::before {
            content: '❌';
            font-size: 1.5rem;
        }

        .exclude ul {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--danger-color);
        }

        .exclude ul li {
            padding: 10px 0;
            border-bottom: 1px solid #f8f9fa;
            position: relative;
            padding-left: 30px;
            font-size: 14px;
            line-height: 1.6;
        }

        .exclude ul li:last-child {
            border-bottom: none;
        }

        .exclude ul li::before {
            content: '❌';
            position: absolute;
            left: 0;
            font-size: 14px;
        }

        /* Enhanced price section styling */
        .price {
            background: linear-gradient(135deg, #f8f4ff, #f3f0ff);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid #e0d4ff;
            margin-bottom: 2rem;
        }

        /* Enhanced navigation tabs */
        .nav-tabs {
            border-bottom: 3px solid #f8f9fa;
            background: white;
            border-radius: 10px 10px 0 0;
            padding: 0.5rem 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-tabs .nav-link {
            color: var(--secondary-color);
            border: none;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            cursor: pointer;
            padding: 1rem 1.5rem;
            margin: 0 0.25rem;
            border-radius: 8px 8px 0 0;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-tabs .nav-link.active {
            color: var(--primary-color);
            background: linear-gradient(135deg, #fff9f5, #fef7f0);
            border-bottom-color: var(--primary-color);
            box-shadow: 0 -2px 10px rgba(255, 107, 53, 0.1);
        }

        .nav-tabs .nav-link:hover {
            border-bottom-color: var(--accent-color);
            color: var(--accent-color);
            background: #fafafa;
        }

        .nav-tabs .nav-link i {
            margin-right: 8px;
            font-size: 1rem;
        }

        /* Enhanced card styling */
        .card {
            border: none;
            border-radius: 15px;
        }
.itinerary{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 20px;
}
.itinerary>h3{
    display: none;
}
        .card-body {
            padding: 0;
    background: transparent;
        }

        /* Enhanced alert boxes */
        .alert-box {
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            border-left: 5px solid;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
    .packageDetailCntr .col-lg-9 {
        flex: 0 0 70%;
        max-width: 70%;
    }
        .packageDetailCntr .col-lg-3 {
        flex: 0 0 30%;
        max-width: 30%;
    }
        .alert-info {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-left-color: var(--info-color);
            color: #0d47a1;
        }

        .alert-warning {
            background: linear-gradient(135deg, #fff8e1, #fffde7);
            border-left-color: var(--warning-color);
            color: #e65100;
        }

        .alert-success {
            background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
            border-left-color: var(--success-color);
            color: #1b5e20;
        }
        .include ul li,.exclude ul li{
            list-style: none;
        }

        /* Responsive enhancements */
        @media (max-width: 768px) {
            .timeline {
                padding-left: 30px;
            }
            
            .timeline-marker {
                left: -23px;
                width: 16px;
                height: 16px;
            }
            
            .main-info, .include, .exclude, .price {
                padding: 1.5rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
        }
        
        .panel-group {
            margin-bottom: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden;
            background: white;
        }

        .panel {
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            margin-bottom: 0 !important;
            background: transparent;
        }

        .panel + .panel {
            border-top: 1px solid #f0f0f0;
        }

        .panel-heading {
            background: linear-gradient(135deg, #fff9f5, #fef7f0) !important;
            border: none !important;
            padding: 0 !important;
            border-radius: 0 !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .panel-heading:hover {
            background: linear-gradient(135deg, #fef7f0, #fff2e6) !important;
            transform: translateX(5px);
        }

        .panel-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
            transition: width 0.3s ease;
        }

        .panel-heading:hover::before {
            width: 8px;
        }

        .panel-title {
            margin: 0 !important;
            font-size: 16px !important;
        }

        .panel-title a {
            display: block !important;
            padding: 20px 25px 20px 60px !important;
            text-decoration: none !important;
            color: var(--secondary-color) !important;
            font-weight: 600 !important;
            font-size: 16px !important;
            line-height: 1.4 !important;
            position: relative;
            transition: all 0.3s ease;
        }

        .panel-title a:hover {
            color: var(--primary-color) !important;
            text-decoration: none !important;
        }

       

        /* Add day number styling */
        .panel-title a::before {
            content: counter(day-counter);
            counter-increment: day-counter;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        }

        /* Initialize counter */
        .panel-group {
            counter-reset: day-counter;
        }

        /* Collapse/Expand icon */
        .panel-title a::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 25px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        

        .panel-collapse {
            border: none !important;
        }

        .panel-body {
            padding: 25px 35px 30px 35px !important;
            background: #fafafa !important;
            border: none !important;
            font-size: 14px !important;
            line-height: 1.7 !important;
            color: #555 !important;
            position: relative;
        }

        .panel-body::before {
            content: '';
            position: absolute;
            left: 0;
            display: none;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
        }

        .panel-body p {
            margin-bottom: 15px !important;
            text-align: justify;
        }

        .panel-body p:last-child {
            margin-bottom: 0 !important;
        }

        .panel-body strong {
            color: var(--primary-color) !important;
            font-weight: 600 !important;
        }

        /* Enhanced styling for active/open panels */
        .panel-collapse.in .panel-body,
        .panel-collapse.show .panel-body {
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Special styling for first and last panels */
        .panel:first-child .panel-heading {
            border-radius: 15px 15px 0 0 !important;
        }

        .panel:last-child .panel-heading {
            border-radius: 0 0 15px 15px !important;
        }

        .panel:last-child .panel-body {
            border-radius: 0 0 15px 15px !important;
        }

        /* Mobile responsive accordion */
        @media (max-width: 768px) {
            .panel-title a {
                padding: 15px 20px 15px 30px !important;
                font-size: 14px !important;
            }

            .panel-title a::before {
                width: 25px;
                height: 25px;
                font-size: 11px;
                left: 10px;
            }

            .panel-title a::after {
                width: 22px;
                height: 22px;
                font-size: 16px;
                right: 15px;
            }

            .panel-body {
                padding: 20px 25px !important;
                font-size: 13px !important;
            }
            .packageDetailCntr .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
        .packageDetailCntr .col-lg-3 {
       flex: 0 0 100%;
        max-width: 100%;
    }
    .content-section h2, .content-section h3, .content-section h4{
            font-size: 20px;
    }
    .itinerary-inner{
        padding: 0!important;
    }
        }

        /* Smooth transitions for all accordion elements */
        .panel-heading,
        .panel-title a,
        .panel-body {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

      
        /* Custom scrollbar for accordion content */
        .panel-body::-webkit-scrollbar {
            width: 6px;
        }

        .panel-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .panel-body::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .panel-body::-webkit-scrollbar-thumb:hover {
            background: var(--accent-color);
        }.collapse:not(.show), template {
    display: none;
}
  