  /* .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        } */
.no-position section
{
position:unset!important;
}
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 14px;
            color: #64748b;
        }

        .breadcrumb a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #e16753;
        }

        .main-title {
           font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 30px; 
    background: linear-gradient(135deg, #df6856, #e16753);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 60px;
        }

        .features {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(59, 130, 246, 0.1);
            padding: 12px 20px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .checkmark {
            width: 20px;
            height: 20px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            margin-top: 40px;
        }

        .tour-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
        }

        .detail-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #e27046, #dd7566, #e17146a1);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .detail-card:hover::before {
            transform: translateX(0);
        }

        .detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .detail-icon {
            width: 60px;
            height: 60px;
            /* background: linear-gradient(135deg, #e16753, #8b5cf6); */
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* margin-bottom: 20px; */
            transition: all 0.3s ease;
        }

        .detail-card:hover .detail-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .detail-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .detail-value {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.2;
            text-transform: capitalize;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            padding: 35px;
            backdrop-filter: blur(30px);
            border: 2px solid rgba(251, 146, 60, 0.3);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .featured-badge {
            background: linear-gradient(45deg, #e16753, #d97706);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        }

        .price-main {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1e293b;
            margin-bottom: 5px;
        }

        .price-highlight {
            color: #e16753;
        }

        .price-sub {
            color: #64748b;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .price-note {
            color: #64748b;
            font-size: 13px;
            margin-bottom: 30px;
        }

        .cta-button {
            width: 100%;
            background: linear-gradient(135deg, #e16753, #fbdc89);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
        }

        .inquiry-button {
            width: 100%;
            background: transparent;
            color: #e16753;
            border: 2px solid #e16753;
            padding: 16px;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .inquiry-button:hover {
            background: #e16753;
            color: white;
            transform: translateY(-2px);
        }

        .company-info {
            text-align: center;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #e2e8f0;
        }

        .company-name {
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 5px;
        }

        .rating-text {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 8px;
        }

        .tripadvisor-logo {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #00aa6c;
            font-weight: 600;
            font-size: 14px;
        }

        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .tour-details {
                     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            
            .features {
                flex-direction: column;
            }
            
              .main-title {
        font-size: 1.2rem;
        line-height: 25px;
        margin-top: 10px;
    }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        .float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Navigation Styles */
        .section-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            margin: 40px 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 20px;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nav-container::-webkit-scrollbar {
            display: none;
        }

        .tour-nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 18px 20px;
            text-decoration: none;
            color: #64748b;
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 10px;
            margin: 8px;
        }

        .tour-nav-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #dd685a, #e09453bd);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .tour-nav-item:hover,
        .tour-nav-item.active {
            color: #e16753;
            background: rgba(59, 130, 246, 0.1);
        }

        .tour-nav-item.active::before {
            width: 80%;
        }

        .nav-icon {
            width: 18px;
            height: 18px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .tour-nav-item:hover .nav-icon,
        .tour-nav-item.active .nav-icon {
            opacity: 1;
            transform: scale(1.1);
        }

        /* Content Section Styles */
        .content-section {
            margin: 60px 0;
            scroll-margin-top: 100px;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1e293b;
            letter-spacing: -1px;
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #dd685a, #e09453bd);
            border-radius: 2px;
        }

        .overview-content {
            max-width: 900px;
        }

        .overview-description {
            font-size: 18px;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 40px;
            background: rgba(255, 255, 255, 0.8);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid #e16753;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .highlights-section {
            margin-bottom: 40px;
        }

        .highlights-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
            position: relative;
        }

        .highlights-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            border: 1px solid rgba(59, 130, 246, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .highlight-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #e16753, #fbdc89);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
        }

        .highlight-item:hover::before {
            transform: scaleY(1);
        }

        .highlight-icon {
            color: #e16753;
            font-size: 18px;
            font-weight: bold;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .highlight-item span {
            color: #374151;
            line-height: 1.6;
            font-weight: 500;
        }

        .tour-description {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .tour-description p {
            color: #374151;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .tour-description p:last-child {
            margin-bottom: 0;
        }

        .includes-grid {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
            gap: 20px;
            margin-bottom: 40px;
            text-transform: capitalize;
        }

        .include-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            border-left: 4px solid #e16753;
            transition: all 0.3s ease;
        }

        .include-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .check-icon::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .include-text {
            color: #495057;
            line-height: 1.6;
            font-size: 1.1em;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            /* margin: 40px 0; */
        }

        .gallery-item {
            position: relative;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .itinerary {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
        }

        .itinerary-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .expand-btn {
            background:  linear-gradient(90deg, #dd685a, #e09453bd);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .expand-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .day-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .day-item:hover {
            background: rgba(102, 126, 234, 0.05);
            padding-left: 10px;
            border-radius: 8px;
        }

        .day-item:last-child {
            border-bottom: none;
        }

        .day-number {
            background:  linear-gradient(90deg, #dd685a, #e09453bd);            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-weight: bold;
            margin-right: 20px;
            min-width: 60px;
            text-align: center;
            font-size: 0.9em;
        }

        .day-description {
            flex: 1;
            font-size: 1.2em;
            color: #2c3e50;
            font-weight: 500;
        }

        .plus-icon {
            width: 40px;
            height: 40px;
            background: #e6e7e8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .plus-icon:hover {
            background: #ff6b35;
            transform: rotate(45deg);
        }

        .customize-section {
            text-align: center;
            margin-top: 40px;
            padding: 40px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 15px;
        }

        .customize-text {
            font-size: 1.3em;
            color: #495057;
            margin-bottom: 25px;
        }

        .customize-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .customize-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .includes-grid {
                grid-template-columns: 1fr;
            }
            
            .content {
                padding: 20px;
            }
            
            .section-title {
                font-size: 2em;
            }
        }

         .booking-sidebar {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .booking-sidebar:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .booking-sidebar-title {
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.3;
        }

        .booking-sidebar-current-price {
            font-size: 2.25rem;
            font-weight: 800;
            color: #2980b9;
        }

        .booking-sidebar-original-price {
            font-size: 1.5rem;
            color: #95a5a6;
            text-decoration: line-through;
        }

        .booking-sidebar-feature-icon {
            width: 24px;
            height: 24px;
            background: #27ae60;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .booking-sidebar-feature-icon::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .booking-sidebar-feature-item {
            transition: all 0.3s ease;
        }

        .booking-sidebar-feature-item:hover {
            transform: translateX(5px);
            color: #2c3e50;
        }

        .booking-sidebar-form-section {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
        }

        .booking-sidebar-counter {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            max-width: 140px;
        }

        .booking-sidebar-counter-btn {
            width: 36px;
            height: 36px;
            border: none;
            background: #f8f9fa;
            border-radius: 6px;
            font-size: 18px;
            font-weight: bold;
            color: #495057;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .booking-sidebar-counter-btn:hover:not(:disabled) {
            background: #e9ecef;
            color: #2c3e50;
        }

        .booking-sidebar-counter-btn:active {
            transform: scale(0.95);
        }

        .booking-sidebar-counter-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .booking-sidebar-counter-value {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            min-width: 20px;
        }

        .booking-sidebar-optional-toggle {
            background: none;
            border: none;
            color: #2980b9;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .booking-sidebar-optional-toggle:hover {
            color: #1e6091;
        }

        .booking-sidebar-optional-arrow {
            transition: transform 0.3s ease;
            font-size: 14px;
        }

        .booking-sidebar-optional-arrow.active {
            transform: rotate(180deg);
        }

        .booking-sidebar-optional-content {
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .booking-sidebar-optional-content.show {
            display: block;
        }

        .booking-sidebar-group-header {
            background: #f8f9fa;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .booking-sidebar-group-header:hover {
            background: #e9ecef;
            transform: scale(1.01);
        }

        .booking-sidebar-group-arrow {
            color: #7f8c8d;
            transition: transform 0.3s ease;
        }

        .booking-sidebar-group-arrow.active {
            transform: rotate(180deg);
        }

        .booking-sidebar-group-prices {
            background: #f8f9fa;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .booking-sidebar-group-prices.show {
            display: block;
        }

        .booking-sidebar-price-row {
            transition: all 0.3s ease;
        }

        .booking-sidebar-price-row:hover {
            background: white;
        }

        .booking-sidebar-group-price {
            font-weight: 700;
            color: #2980b9;
        }

        .booking-sidebar-total-price {
            font-size: 1.375rem;
            font-weight: 700;
            color: #2980b9;
        }

        .booking-sidebar-button {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            border: none;
            transition: all 0.3s ease;
        }

        .booking-sidebar-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
        }

        .booking-sidebar-whatsapp-button {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border: none;
            transition: all 0.3s ease;
        }

        .booking-sidebar-whatsapp-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.instagram-sidebar
{
position: relative;
left: 30px;
}